-
Notifications
You must be signed in to change notification settings - Fork 22
/
VERSION
57 lines (45 loc) · 2.27 KB
/
VERSION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
PureMVC Standard Framework for Python (Ported)
--------------------------------------------------------------------------
Release Date: 03/16/09
Platform: Python 2.5
Version: 1
Revision: 2
Minor: 0
Author: Toby de Havilland <[email protected]>
--------------------------------------------------------------------------
1.3 - * Fixed name clashes with built-in types
* Refactored unit test primer to auto-load unit tests
* Fixed bug in MacroCommand.execute() where the list of commands was
consumed after the first execution
* Set proxy data anyway because some objects (like an empty strings,
lists, dicts, etc) can fail the if statement method
* Always use instance attributes instead of class level attributes
* Refactored Facade.removeProxy() method
* Added missing IView.removeObserver() method
* Added missing Facade.hasMediator method
* Raise from interface classes NotImplementedError(self) for verbose
exception
* Missing inheritance from INotifier for facade, command and mediator
interfaces
* dict.get() returns None by default if no key was found
* Use "is" instead of "=" operator when comparing to None
1.2 - * Added install command to fab file
* Renamed tests folder
* Ignore build dir
* Remove use of old-style classes (fixes potential MRO conflicts)
* Mediator name and Proxy name cannot be None (raises a ValueError)
* Fix problem where a notification removes a observer (Unittest added)
* Fixed IProxy method definitions
Thanks to Cornelis Bos for the patch!
1.1 - Updated Fabfile
Fixed FIFO bug in MacroCommand.execute()
Fixed typo in Proxy docstring
1.0 - updated in sync with release 2.0.4 of the AS3 Standard package
Added a fabfile to build documentation and unit tests (http://www.fabfile.org/)
0.6 - update in sync with releases 2.0.2 and 2.0.3 of the AS3
standard package.
0.5 - Removed .pyc files and complete docs.
0.4 - New package structure and installer script.
0.3 - Complete rewrite with unit tests and documentation by Toby.
0.2 - Current state of port by Nathan.
0.1 - Initial project structure created in repository - CLH