[Python-checkins] r59032 - sandbox/trunk/pep362/README sandbox/trunk/pep362/setup.py

brett.cannon python-checkins at python.org
Sat Nov 17 05:22:57 CET 2007


Author: brett.cannon
Date: Sat Nov 17 05:22:55 2007
New Revision: 59032

Modified:
   sandbox/trunk/pep362/README
   sandbox/trunk/pep362/setup.py
Log:
Update info for a 0.6 release to PyPI.


Modified: sandbox/trunk/pep362/README
==============================================================================
--- sandbox/trunk/pep362/README	(original)
+++ sandbox/trunk/pep362/README	Sat Nov 17 05:22:55 2007
@@ -41,6 +41,17 @@
 
 The version number will get bumped as open issues in the PEP are closed.
 
+0.6
+---
+
+* Removed all ``has_*`` methods.
+
+* Added __getitem__ and __iter__ method to Signature.  That led to the removal
+  of Signature.parameters.
+
+* Fixed a bug in setting the annotation for variable keyword arguments.
+
+
 0.4
 ----
 

Modified: sandbox/trunk/pep362/setup.py
==============================================================================
--- sandbox/trunk/pep362/setup.py	(original)
+++ sandbox/trunk/pep362/setup.py	Sat Nov 17 05:22:55 2007
@@ -3,7 +3,7 @@
 setup(
         # Package metadata.
         name='pep362',
-        version='0.4',
+        version='0.6',
         description='Implementation of PEP 362 (Function Signature objects)',
         author='Brett Cannon',
         author_email='brett at python.org',


More information about the Python-checkins mailing list