]> granicus.if.org Git - python/log
python
16 years agoBlocked revisions 63108 via svnmerge
Brett Cannon [Sun, 11 May 2008 23:39:50 +0000 (23:39 +0000)]
Blocked revisions 63108 via svnmerge

........
  r63108 | brett.cannon | 2008-05-11 16:39:04 -0700 (Sun, 11 May 2008) | 2 lines

  Put Lib/lib-old back on to sys.path for module renames.
........

16 years agoRevert commit r63088.
Alexandre Vassalotti [Sun, 11 May 2008 23:17:37 +0000 (23:17 +0000)]
Revert commit r63088.

16 years agoRemove the sre module.
Brett Cannon [Sun, 11 May 2008 22:47:58 +0000 (22:47 +0000)]
Remove the sre module.

16 years agoRemove old backwards-compatibility classes from the cgi module.
Georg Brandl [Sun, 11 May 2008 21:42:51 +0000 (21:42 +0000)]
Remove old backwards-compatibility classes from the cgi module.

16 years agoRemove rfc822 dependency in test.
Georg Brandl [Sun, 11 May 2008 21:31:44 +0000 (21:31 +0000)]
Remove rfc822 dependency in test.

16 years agoMerged revisions 63078 via svnmerge from
Eric Smith [Sun, 11 May 2008 21:00:57 +0000 (21:00 +0000)]
Merged revisions 63078 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

When forward porting this, I added _PyUnicode_InsertThousandsGrouping.

........
  r63078 | eric.smith | 2008-05-11 15:52:48 -0400 (Sun, 11 May 2008) | 14 lines

  Addresses issue 2802: 'n' formatting for integers.

  Adds 'n' as a format specifier for integers, to mirror the same
  specifier which is already available for floats.  'n' is the same as
  'd', but inserts the current locale-specific thousands grouping.

  I added this as a stringlib function, but it's only used by str type,
  not unicode.  This is because of an implementation detail in
  unicode.format(), which does its own str->unicode conversion.  But the
  unicode version will be needed in 3.0, and it may be needed by other
  code eventually in 2.6 (maybe decimal?), so I left it as a stringlib
  implementation.  As long as the unicode version isn't instantiated,
  there's no overhead for this.
........

16 years ago#756982: Remove rfc822 reference.
Georg Brandl [Sun, 11 May 2008 20:51:18 +0000 (20:51 +0000)]
#756982: Remove rfc822 reference.

16 years agoRenamed PixMapWrapper module to pixmapwrapper.
Alexandre Vassalotti [Sun, 11 May 2008 20:36:09 +0000 (20:36 +0000)]
Renamed PixMapWrapper module to pixmapwrapper.

16 years agoBlocked revisions 63086 via svnmerge
Alexandre Vassalotti [Sun, 11 May 2008 20:31:43 +0000 (20:31 +0000)]
Blocked revisions 63086 via svnmerge

........
  r63086 | alexandre.vassalotti | 2008-05-11 16:30:43 -0400 (Sun, 11 May 2008) | 6 lines

  Added stub for the PixMapWrapper module to be renamed in 3.0.
  Modified TestStdlibRenames to support platform specific renames.
  Added test for PixMapWrapper rename warning.
  Added note to documentation about PixMapWrapper rename.
........

16 years agoBlocked revisions 63046 via svnmerge
Alexandre Vassalotti [Sun, 11 May 2008 20:08:44 +0000 (20:08 +0000)]
Blocked revisions 63046 via svnmerge

........
  r63046 | alexandre.vassalotti | 2008-05-11 05:01:51 -0400 (Sun, 11 May 2008) | 3 lines

  Added test for copy_reg rename.
  Added note to documentation about copy_reg rename.
........

16 years agoBlocked revisions 63080 via svnmerge
Alexandre Vassalotti [Sun, 11 May 2008 20:07:57 +0000 (20:07 +0000)]
Blocked revisions 63080 via svnmerge

........
  r63080 | alexandre.vassalotti | 2008-05-11 16:04:03 -0400 (Sun, 11 May 2008) | 3 lines

  Added test for Queue rename warning.
  Added note to documentation about Queue rename.
........

16 years agoRename Queue module to queue.
Alexandre Vassalotti [Sun, 11 May 2008 19:59:59 +0000 (19:59 +0000)]
Rename Queue module to queue.
Updated documentation to use new name.
Merged revisions 63077 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r63077 | alexandre.vassalotti | 2008-05-11 15:39:48 -0400 (Sun, 11 May 2008) | 3 lines

  Added stub for the Queue module to be renamed in 3.0.
  Use the 3.0 module name to avoid spurious warnings.
........

16 years agoRemove test for now-removed classes.
Georg Brandl [Sun, 11 May 2008 16:52:22 +0000 (16:52 +0000)]
Remove test for now-removed classes.

16 years agofix __all__
Benjamin Peterson [Sun, 11 May 2008 16:17:24 +0000 (16:17 +0000)]
fix __all__

16 years agoUpdate the codecs docs w.r.t. str/bytes.
Georg Brandl [Sun, 11 May 2008 14:52:00 +0000 (14:52 +0000)]
Update the codecs docs w.r.t. str/bytes.

16 years agoRemove old macro that isn't used anywhere anymore.
Georg Brandl [Sun, 11 May 2008 14:42:16 +0000 (14:42 +0000)]
Remove old macro that isn't used anywhere anymore.

16 years agoRemove mentions of "plain" integers.
Georg Brandl [Sun, 11 May 2008 14:30:18 +0000 (14:30 +0000)]
Remove mentions of "plain" integers.

16 years agoBlock doc change about plain/long integers.
Georg Brandl [Sun, 11 May 2008 10:57:28 +0000 (10:57 +0000)]
Block doc change about plain/long integers.

16 years agoRemove an obsolete sentence.
Georg Brandl [Sun, 11 May 2008 10:53:16 +0000 (10:53 +0000)]
Remove an obsolete sentence.

16 years ago#2814: remove deprecated classes from mailbox module. Patch by Humberto Diogenes.
Georg Brandl [Sun, 11 May 2008 08:59:40 +0000 (08:59 +0000)]
#2814: remove deprecated classes from mailbox module. Patch by Humberto Diogenes.

16 years agoRename copy_reg module to copyreg.
Alexandre Vassalotti [Sun, 11 May 2008 08:55:36 +0000 (08:55 +0000)]
Rename copy_reg module to copyreg.
Updated documentation.
Merged revisions 63042 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r63042 | alexandre.vassalotti | 2008-05-11 04:25:28 -0400 (Sun, 11 May 2008) | 5 lines

  Added module stub for copy_reg renaming in 3.0.
  Renamed copy_reg to copyreg in the standard library, to avoid
  spurious warnings and ease later merging to py3k branch. Public
  documentation remains intact.
........

16 years agoBlocked revisions 63030 via svnmerge
Brett Cannon [Sun, 11 May 2008 03:04:55 +0000 (03:04 +0000)]
Blocked revisions 63030 via svnmerge

........
  r63030 | brett.cannon | 2008-05-10 20:01:47 -0700 (Sat, 10 May 2008) | 1 line

  Deprecated the mhlib module for removal in 3.0.
........

16 years agoRemove the mhlib module.
Brett Cannon [Sun, 11 May 2008 03:00:26 +0000 (03:00 +0000)]
Remove the mhlib module.

16 years agoBlocked revisions 63025 via svnmerge
Brett Cannon [Sun, 11 May 2008 01:08:09 +0000 (01:08 +0000)]
Blocked revisions 63025 via svnmerge

........
  r63025 | brett.cannon | 2008-05-10 18:06:54 -0700 (Sat, 10 May 2008) | 2 lines

  Fix up markup in the deprecation notice.
........

16 years agoBlocked revisions 63021 via svnmerge
Brett Cannon [Sun, 11 May 2008 00:51:30 +0000 (00:51 +0000)]
Blocked revisions 63021 via svnmerge

........
  r63021 | brett.cannon | 2008-05-10 17:50:51 -0700 (Sat, 10 May 2008) | 1 line

  The linuxaudidev module has been deprecated for removal in Python 3.0.
........

16 years agoBlocked revisions 63018 via svnmerge
Brett Cannon [Sat, 10 May 2008 22:46:23 +0000 (22:46 +0000)]
Blocked revisions 63018 via svnmerge

........
  r63018 | brett.cannon | 2008-05-10 15:45:07 -0700 (Sat, 10 May 2008) | 1 line

  Deprecate ihooks for removal in 3.0.
........

16 years agoThe ihooks module has been removed.
Brett Cannon [Sat, 10 May 2008 22:42:14 +0000 (22:42 +0000)]
The ihooks module has been removed.

16 years agoBlocked revisions 63013 via svnmerge
Brett Cannon [Sat, 10 May 2008 22:12:57 +0000 (22:12 +0000)]
Blocked revisions 63013 via svnmerge

........
  r63013 | brett.cannon | 2008-05-10 15:11:45 -0700 (Sat, 10 May 2008) | 2 lines

  Deprecate the fpformat module for removal in 3.0.
........

16 years agoRemove a reference to the docs of fpformat.
Brett Cannon [Sat, 10 May 2008 22:04:30 +0000 (22:04 +0000)]
Remove a reference to the docs of fpformat.

16 years agoRemove the fpformat module.
Brett Cannon [Sat, 10 May 2008 22:03:16 +0000 (22:03 +0000)]
Remove the fpformat module.

16 years agoBlocked revisions 63007-63008 via svnmerge
Brett Cannon [Sat, 10 May 2008 21:25:32 +0000 (21:25 +0000)]
Blocked revisions 63007-63008 via svnmerge

........
  r63007 | brett.cannon | 2008-05-10 14:20:19 -0700 (Sat, 10 May 2008) | 2 lines

  Deprecate the dl module for removal in 3.0.
........
  r63008 | brett.cannon | 2008-05-10 14:22:43 -0700 (Sat, 10 May 2008) | 2 lines

  Add an entry for the deprecation of the dl module.
........

16 years agoBlocked revisions 63004 via svnmerge
Brett Cannon [Sat, 10 May 2008 21:13:53 +0000 (21:13 +0000)]
Blocked revisions 63004 via svnmerge

........
  r63004 | brett.cannon | 2008-05-10 14:12:57 -0700 (Sat, 10 May 2008) | 2 lines

  Deprecate the dircache module for 3.0.
........

16 years agoRemove the dircache module.
Brett Cannon [Sat, 10 May 2008 21:11:46 +0000 (21:11 +0000)]
Remove the dircache module.

16 years agoFixup old, invalid import.
Jeremy Hylton [Sat, 10 May 2008 20:38:40 +0000 (20:38 +0000)]
Fixup old, invalid import.

16 years agoThe Canvas module has been removed.
Brett Cannon [Sat, 10 May 2008 03:19:54 +0000 (03:19 +0000)]
The Canvas module has been removed.

16 years agoBlocked revisions 62985-62986 via svnmerge
Brett Cannon [Sat, 10 May 2008 03:17:52 +0000 (03:17 +0000)]
Blocked revisions 62985-62986 via svnmerge

........
  r62985 | brett.cannon | 2008-05-09 20:14:32 -0700 (Fri, 09 May 2008) | 2 lines

  The Canvas module has been deprecated for removal in 3.0.
........
  r62986 | brett.cannon | 2008-05-09 20:16:38 -0700 (Fri, 09 May 2008) | 3 lines

  Make sure warnings are not suppressed when testing for the raised
  DeprecationWarning.
........

16 years agoBlocked revisions 62983 via svnmerge
Brett Cannon [Sat, 10 May 2008 03:11:05 +0000 (03:11 +0000)]
Blocked revisions 62983 via svnmerge

........
  r62983 | brett.cannon | 2008-05-09 20:09:35 -0700 (Fri, 09 May 2008) | 2 lines

  Add a test for the deprecation of the compiler package.
........

16 years agoBlocked revisions 62977 via svnmerge
Brett Cannon [Sat, 10 May 2008 02:59:33 +0000 (02:59 +0000)]
Blocked revisions 62977 via svnmerge

........
  r62977 | brett.cannon | 2008-05-09 19:58:26 -0700 (Fri, 09 May 2008) | 2 lines

  Deprecate the compiler package for removal in 3.0.
........

16 years agoBlocked revisions 62974 via svnmerge
Brett Cannon [Sat, 10 May 2008 02:58:58 +0000 (02:58 +0000)]
Blocked revisions 62974 via svnmerge

........
  r62974 | brett.cannon | 2008-05-09 19:53:46 -0700 (Fri, 09 May 2008) | 2 lines

  Add an entry on the deprecation of Bastion and rexec.
........

16 years agoBlocked revisions 62971 via svnmerge
Brett Cannon [Sat, 10 May 2008 02:48:35 +0000 (02:48 +0000)]
Blocked revisions 62971 via svnmerge

........
  r62971 | brett.cannon | 2008-05-09 19:47:54 -0700 (Fri, 09 May 2008) | 2 lines

  Deprecate the bsddb185 module for removal in 3.0.
........

16 years agoBlocked revisions 62968 via svnmerge
Brett Cannon [Sat, 10 May 2008 02:37:39 +0000 (02:37 +0000)]
Blocked revisions 62968 via svnmerge

........
  r62968 | brett.cannon | 2008-05-09 19:27:04 -0700 (Fri, 09 May 2008) | 2 lines

  Deprecate Bastion and rexec for 3.0.
........

16 years agoBlocked revisions 62962 via svnmerge
Brett Cannon [Fri, 9 May 2008 22:53:31 +0000 (22:53 +0000)]
Blocked revisions 62962 via svnmerge

........
  r62962 | brett.cannon | 2008-05-09 15:51:58 -0700 (Fri, 09 May 2008) | 2 lines

  Deprecate the pure module for 3.0.
........

16 years agoBlocked revisions 62960 via svnmerge
Alexandre Vassalotti [Fri, 9 May 2008 21:57:48 +0000 (21:57 +0000)]
Blocked revisions 62960 via svnmerge

........
  r62960 | alexandre.vassalotti | 2008-05-09 17:49:43 -0400 (Fri, 09 May 2008) | 5 lines

  Backport fast alternate io.BytesIO implementation.
  Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844,
  r62846, r62952, r62956.
........

16 years agoRemoved redundant max() call.
Alexandre Vassalotti [Fri, 9 May 2008 21:21:21 +0000 (21:21 +0000)]
Removed redundant max() call.

Change suggested by Nick Coghlan.

16 years agoRemoved remnants of os.path.walk().
Alexandre Vassalotti [Fri, 9 May 2008 20:00:17 +0000 (20:00 +0000)]
Removed remnants of os.path.walk().

16 years agoMade the TypeError message in bytes_iconcat() less confusing.
Alexandre Vassalotti [Fri, 9 May 2008 19:50:27 +0000 (19:50 +0000)]
Made the TypeError message in bytes_iconcat() less confusing.

Before this change, the following example would output:

  >>> b = bytearray(b"hello")
  >>> b += "world"
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
  TypeError: can't concat bytes to bytearray

16 years agoMerged revisions 62946 via svnmerge from
Martin v. Löwis [Fri, 9 May 2008 17:14:15 +0000 (17:14 +0000)]
Merged revisions 62946 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62946 | martin.v.loewis | 2008-05-09 19:11:07 +0200 (Fr, 09 Mai 2008) | 1 line

  Add 2.6b1 and 2.6b2 UUIDs.
........

16 years agoUse UNICODE wWinMain, to make CRT initialize __wargv.
Martin v. Löwis [Fri, 9 May 2008 17:06:49 +0000 (17:06 +0000)]
Use UNICODE wWinMain, to make CRT initialize __wargv.

16 years agoblock r62943
Mark Dickinson [Fri, 9 May 2008 16:16:28 +0000 (16:16 +0000)]
block r62943

16 years agoRevert the temporary change in r62624
Mark Dickinson [Fri, 9 May 2008 14:10:27 +0000 (14:10 +0000)]
Revert the temporary change in r62624

16 years agoIssue 2801: fix bug in float.is_integer where ValueError was incorrectly
Mark Dickinson [Fri, 9 May 2008 13:55:01 +0000 (13:55 +0000)]
Issue 2801:  fix bug in float.is_integer where ValueError was incorrectly
raised.

16 years agoIssue 2748: fix __ceil__, __floor__ and __round__ magic methods in
Mark Dickinson [Fri, 9 May 2008 13:42:33 +0000 (13:42 +0000)]
Issue 2748: fix __ceil__, __floor__ and __round__ magic methods in
Decimal, and add tests.

16 years agoBlocked revisions 62923 via svnmerge
Brett Cannon [Fri, 9 May 2008 05:33:23 +0000 (05:33 +0000)]
Blocked revisions 62923 via svnmerge

........
  r62923 | brett.cannon | 2008-05-08 22:32:42 -0700 (Thu, 08 May 2008) | 2 lines

  Deprecate the toaiff module for removal in 3.0.
........

16 years agoBlocked revisions 62920 via svnmerge
Brett Cannon [Fri, 9 May 2008 05:26:16 +0000 (05:26 +0000)]
Blocked revisions 62920 via svnmerge

........
  r62920 | brett.cannon | 2008-05-08 22:25:37 -0700 (Thu, 08 May 2008) | 2 lines

  Deprecate test.testall for removal in 3.0.
........

16 years agoBlocked revisions 62917 via svnmerge
Brett Cannon [Fri, 9 May 2008 05:20:35 +0000 (05:20 +0000)]
Blocked revisions 62917 via svnmerge

........
  r62917 | brett.cannon | 2008-05-08 22:18:40 -0700 (Thu, 08 May 2008) | 2 lines

  Deprecate the new module for removal in 3.0.
........

16 years agoBlocked revisions 62912 via svnmerge
Benjamin Peterson [Fri, 9 May 2008 00:32:54 +0000 (00:32 +0000)]
Blocked revisions 62912 via svnmerge

........
  r62912 | benjamin.peterson | 2008-05-08 19:27:01 -0500 (Thu, 08 May 2008) | 2 lines

  Add Py3k warnings to os.path.walk
........

16 years agoRemove os.path.walk
Benjamin Peterson [Thu, 8 May 2008 23:44:58 +0000 (23:44 +0000)]
Remove os.path.walk

16 years agoMerged revisions 62873,62887,62892-62896,62904 via svnmerge from
Benjamin Peterson [Thu, 8 May 2008 22:27:58 +0000 (22:27 +0000)]
Merged revisions 62873,62887,62892-62896,62904 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62873 | raymond.hettinger | 2008-05-08 12:18:13 -0500 (Thu, 08 May 2008) | 1 line

  Issue 2778.  Document the temporary frozenset swap in __contains__(), remove(), and discard().
........
  r62887 | brett.cannon | 2008-05-08 14:50:51 -0500 (Thu, 08 May 2008) | 5 lines

  Make test.test_support.catch_warning() take an argument specifying if any
  triggered warnings should be captured. This allows the context manager to be
  used to just prevent the internal state of the 'warnings' framework and thus
  allow triggered warnings to be displayed.
........
  r62892 | brett.cannon | 2008-05-08 15:20:24 -0500 (Thu, 08 May 2008) | 4 lines

  Fix a bug introduced by the addition of the 'record' argument to
  test.test_support.catch_warning() where showwarning() was not being set
  properly.
........
  r62893 | brett.cannon | 2008-05-08 15:20:54 -0500 (Thu, 08 May 2008) | 2 lines

  Document the 'record' argument for test.test_support.catch_warning().
........
  r62894 | brett.cannon | 2008-05-08 15:23:06 -0500 (Thu, 08 May 2008) | 4 lines

  Fix sys.flags to properly expose bytes_warning.

  Closes issue #2790.
........
  r62895 | brett.cannon | 2008-05-08 15:23:54 -0500 (Thu, 08 May 2008) | 2 lines

  Add a missing entry on  the fix for issue #2790.
........
  r62896 | brett.cannon | 2008-05-08 15:24:43 -0500 (Thu, 08 May 2008) | 2 lines

  Add test.test_support.catch_warning()'s new argument.
........
  r62904 | benjamin.peterson | 2008-05-08 17:09:54 -0500 (Thu, 08 May 2008) | 2 lines

  Replace instances of os.path.walk with os.walk
........

16 years agoBlocked revisions 62865 via svnmerge
Benjamin Peterson [Thu, 8 May 2008 22:14:37 +0000 (22:14 +0000)]
Blocked revisions 62865 via svnmerge

........
  r62865 | barry.warsaw | 2008-05-08 10:30:00 -0500 (Thu, 08 May 2008) | 1 line

  Post tag updates.
........

16 years agoMove variable declaration to the top of the block,
Amaury Forgeot d'Arc [Thu, 8 May 2008 20:56:43 +0000 (20:56 +0000)]
Move variable declaration to the top of the block,
to let _json.c compile with Microsoft compilers.

16 years agoBlocked revisions 62900 via svnmerge
Brett Cannon [Thu, 8 May 2008 20:37:28 +0000 (20:37 +0000)]
Blocked revisions 62900 via svnmerge

........
  r62900 | brett.cannon | 2008-05-08 13:36:09 -0700 (Thu, 08 May 2008) | 2 lines

  Deprecate the user module for removal in 3.0.
........

16 years agoDocument that the mutex module is now gone.
Brett Cannon [Thu, 8 May 2008 20:31:44 +0000 (20:31 +0000)]
Document that the mutex module is now gone.

16 years agoRemove the user module.
Brett Cannon [Thu, 8 May 2008 20:31:11 +0000 (20:31 +0000)]
Remove the user module.

16 years agoBlocked revisions 62888 via svnmerge
Brett Cannon [Thu, 8 May 2008 19:53:31 +0000 (19:53 +0000)]
Blocked revisions 62888 via svnmerge

........
  r62888 | brett.cannon | 2008-05-08 12:52:45 -0700 (Thu, 08 May 2008) | 2 lines

  Deprecate stringold for removal in 3.0.
........

16 years agoBlocked revisions 62884 via svnmerge
Brett Cannon [Thu, 8 May 2008 19:27:16 +0000 (19:27 +0000)]
Blocked revisions 62884 via svnmerge

........
  r62884 | brett.cannon | 2008-05-08 12:26:08 -0700 (Thu, 08 May 2008) | 2 lines

  The mutex module has been deprecated for removal in 3.0.
........

16 years agoRemove the mutex module.
Brett Cannon [Thu, 8 May 2008 18:55:02 +0000 (18:55 +0000)]
Remove the mutex module.

16 years agoBlock r62879.
Brett Cannon [Thu, 8 May 2008 18:16:22 +0000 (18:16 +0000)]
Block r62879.

16 years agoAdd entry for removal of imputil. Also start the 3.0b1 section.
Brett Cannon [Thu, 8 May 2008 18:13:40 +0000 (18:13 +0000)]
Add entry for removal of imputil. Also start the 3.0b1 section.

16 years agoRemove the imputil module.
Brett Cannon [Thu, 8 May 2008 18:11:25 +0000 (18:11 +0000)]
Remove the imputil module.

16 years agoDon't echo the echo commands added to "make install". Fix a typo.
Guido van Rossum [Thu, 8 May 2008 17:53:56 +0000 (17:53 +0000)]
Don't echo the echo commands added to "make install".  Fix a typo.

16 years agoMerged revisions 62805,62811,62841-62842,62848-62849,62853-62854 via svnmerge from
Christian Heimes [Thu, 8 May 2008 17:18:53 +0000 (17:18 +0000)]
Merged revisions 62805,62811,62841-62842,62848-62849,62853-62854 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62805 | christian.heimes | 2008-05-07 01:59:53 +0200 (Wed, 07 May 2008) | 1 line

  Re-added getbuildinfo.c solution item
........
  r62811 | benjamin.peterson | 2008-05-07 04:23:43 +0200 (Wed, 07 May 2008) | 2 lines

  update .bzrignore
........
  r62841 | christian.heimes | 2008-05-08 00:54:17 +0200 (Thu, 08 May 2008) | 1 line

  Replace more float hacks with correct math functions
........
  r62842 | benjamin.peterson | 2008-05-08 01:11:54 +0200 (Thu, 08 May 2008) | 2 lines

  Practice EAFP, and revert 62787
........
  r62848 | raymond.hettinger | 2008-05-08 06:35:20 +0200 (Thu, 08 May 2008) | 1 line

  Frozensets do not benefit from autoconversion.
........
  r62849 | raymond.hettinger | 2008-05-08 06:36:12 +0200 (Thu, 08 May 2008) | 1 line

  The __all__ variable forgot to expose the gcd() function.
........
  r62853 | raymond.hettinger | 2008-05-08 09:23:30 +0200 (Thu, 08 May 2008) | 1 line

  Fix-up the enumerate type example and move it to the end.
........
  r62854 | ronald.oussoren | 2008-05-08 12:34:39 +0200 (Thu, 08 May 2008) | 3 lines

  Fix for issue 1770190: platform.mac_ver() now returns the right
  version on OSX 10.4.10
........

16 years agoForward port r62849.
Raymond Hettinger [Thu, 8 May 2008 16:03:04 +0000 (16:03 +0000)]
Forward port r62849.

16 years agoForward port r62848.
Raymond Hettinger [Thu, 8 May 2008 16:02:10 +0000 (16:02 +0000)]
Forward port r62848.

16 years agoOops, the retag screwed this up. First step in repairing this.
Barry Warsaw [Thu, 8 May 2008 15:37:53 +0000 (15:37 +0000)]
Oops, the retag screwed this up.  First step in repairing this.

16 years agoPost tag updates.
Barry Warsaw [Thu, 8 May 2008 15:31:04 +0000 (15:31 +0000)]
Post tag updates.

16 years agoBlocked revisions 62861 via svnmerge
Christian Heimes [Thu, 8 May 2008 14:30:18 +0000 (14:30 +0000)]
Blocked revisions 62861 via svnmerge

........
  r62861 | barry.warsaw | 2008-05-08 15:16:19 +0200 (Thu, 08 May 2008) | 1 line

  Bump to 2.6a3
........

16 years agoMerged revisions 62734,62736,62748,62769 via svnmerge from
Christian Heimes [Thu, 8 May 2008 14:29:10 +0000 (14:29 +0000)]
Merged revisions 62734,62736,62748,62769 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62734 | brett.cannon | 2008-05-05 22:21:38 +0200 (Mon, 05 May 2008) | 5 lines

  Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
  Ippolito.

  Closes issue #2750.
........
  r62736 | georg.brandl | 2008-05-05 22:53:39 +0200 (Mon, 05 May 2008) | 2 lines

  Fix JSON module docs.
........
  r62748 | benjamin.peterson | 2008-05-06 04:51:10 +0200 (Tue, 06 May 2008) | 2 lines

  PEP 8 nits in json package
........
  r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines

  Intern static string
  Use float constructors instead of magic code for float constants
........

16 years agoMove tag.
Barry Warsaw [Thu, 8 May 2008 13:06:07 +0000 (13:06 +0000)]
Move tag.

16 years agoMissed one file
Barry Warsaw [Thu, 8 May 2008 13:05:38 +0000 (13:05 +0000)]
Missed one file

16 years agoTagging for 3.0a5
Barry Warsaw [Thu, 8 May 2008 11:56:58 +0000 (11:56 +0000)]
Tagging for 3.0a5

16 years agoBumping versions for 3.0a5 v3.0a5
Barry Warsaw [Thu, 8 May 2008 11:54:13 +0000 (11:54 +0000)]
Bumping versions for 3.0a5

16 years agoAntoine Pitrou's patch for bug 2507; exception state lives too long in
Barry Warsaw [Thu, 8 May 2008 04:26:35 +0000 (04:26 +0000)]
Antoine Pitrou's patch for bug 2507; exception state lives too long in
3.0.

16 years agoRemoved test_overflow from test_memoryio.CBytesIOTest.
Alexandre Vassalotti [Thu, 8 May 2008 01:45:31 +0000 (01:45 +0000)]
Removed test_overflow from test_memoryio.CBytesIOTest.

This test depends too much on the platform it is running-on to be
useful.

16 years agoFixed the negative value check in io._BytesIO.seek().
Alexandre Vassalotti [Thu, 8 May 2008 01:39:38 +0000 (01:39 +0000)]
Fixed the negative value check in io._BytesIO.seek().

16 years agoFixed bytes naming in the docstrings of _bytesio.c.
Alexandre Vassalotti [Thu, 8 May 2008 01:34:41 +0000 (01:34 +0000)]
Fixed bytes naming in the docstrings of _bytesio.c.

16 years agoFixed a memory leak introduced in r62462
Christian Heimes [Thu, 8 May 2008 01:20:25 +0000 (01:20 +0000)]
Fixed a memory leak introduced in r62462

16 years agoReverted (partially) patch r62667 to zipimport.c.
Alexandre Vassalotti [Wed, 7 May 2008 02:48:42 +0000 (02:48 +0000)]
Reverted (partially) patch r62667 to zipimport.c.

test_pkgutil and test_zipimport are failing on the amd64-gentoo
buildbot due to a yet unknown change introduced by r62667. To find
out what is causing the failure, I am reverting partially r62667.

16 years agoRemove ">>>>" markers left over from merge
Benjamin Peterson [Wed, 7 May 2008 02:16:54 +0000 (02:16 +0000)]
Remove ">>>>" markers left over from merge

16 years agoFixed docstring of _bytesio._BytesIO.writelines().
Alexandre Vassalotti [Wed, 7 May 2008 01:47:37 +0000 (01:47 +0000)]
Fixed docstring of _bytesio._BytesIO.writelines().

16 years agoChanged _bytesio.c to avoid comparing a signed with an unsigned value.
Alexandre Vassalotti [Wed, 7 May 2008 01:44:31 +0000 (01:44 +0000)]
Changed _bytesio.c to avoid comparing a signed with an unsigned value.
Added tests for overflow checks.

16 years agoCleaned how _BytesIO.read() returns an empty bytes object.
Alexandre Vassalotti [Wed, 7 May 2008 00:09:04 +0000 (00:09 +0000)]
Cleaned how _BytesIO.read() returns an empty bytes object.

Thank you, Guido, for noticing!

16 years agoAdded code to compile new _bytesio on Windows
Christian Heimes [Wed, 7 May 2008 00:00:23 +0000 (00:00 +0000)]
Added code to compile new _bytesio on Windows

16 years agoMerged revisions 62792,62799-62800 via svnmerge from
Christian Heimes [Tue, 6 May 2008 23:48:04 +0000 (23:48 +0000)]
Merged revisions 62792,62799-62800 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62792 | brett.cannon | 2008-05-07 01:22:02 +0200 (Wed, 07 May 2008) | 2 lines

  When testing a module's __all__, we really don't care if it is deprecated.
........
  r62799 | christian.heimes | 2008-05-07 01:42:58 +0200 (Wed, 07 May 2008) | 1 line

  Disabled some unit tests for the upcoming release. See #2777
........
  r62800 | brett.cannon | 2008-05-07 01:44:04 +0200 (Wed, 07 May 2008) | 2 lines

  Create a TextMate directory in Misc to house a Python-Dev bundle.
........

16 years agoFixed a small bug introduced by r62778.
Alexandre Vassalotti [Tue, 6 May 2008 23:47:23 +0000 (23:47 +0000)]
Fixed a small bug introduced by r62778.

One of the codepaths of _BytesIO.read() returned a bytearray
object, by mistake, when it should always return a bytes object.
Interestingly, the fact this bug shown up probably means that
some platforms are not using the new C-accelerated io.BytesIO.

16 years agoMerged revisions 62774-62775,62785,62787-62788 via svnmerge from
Christian Heimes [Tue, 6 May 2008 23:45:46 +0000 (23:45 +0000)]
Merged revisions 62774-62775,62785,62787-62788 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r62774 | georg.brandl | 2008-05-06 19:11:42 +0200 (Tue, 06 May 2008) | 2 lines

  #2773: fix description of 'g' and 'G' formatting spec.
........
  r62775 | georg.brandl | 2008-05-06 19:20:54 +0200 (Tue, 06 May 2008) | 2 lines

  > != (!<).
........
  r62785 | benjamin.peterson | 2008-05-07 00:18:11 +0200 (Wed, 07 May 2008) | 2 lines

  Fix logic error in Python/_warnings.c and add a test to verify
........
  r62787 | benjamin.peterson | 2008-05-07 00:31:52 +0200 (Wed, 07 May 2008) | 2 lines

  Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning
........
  r62788 | christian.heimes | 2008-05-07 00:41:46 +0200 (Wed, 07 May 2008) | 1 line

  Implemented PEP 370
........

16 years agoBlock a Misc/NEWS entry (r62797).
Brett Cannon [Tue, 6 May 2008 23:42:27 +0000 (23:42 +0000)]
Block a Misc/NEWS entry (r62797).

16 years agoBlock r62793 (deprecation of audiodev).
Brett Cannon [Tue, 6 May 2008 23:24:23 +0000 (23:24 +0000)]
Block r62793 (deprecation of audiodev).

16 years agoSilence a compiler warning
Christian Heimes [Tue, 6 May 2008 23:15:46 +0000 (23:15 +0000)]
Silence a compiler warning

16 years agoBlocked revisions 62769 via svnmerge
Christian Heimes [Tue, 6 May 2008 22:57:20 +0000 (22:57 +0000)]
Blocked revisions 62769 via svnmerge

........
  r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines

  Intern static string
  Use float constructors instead of magic code for float constants
........

16 years agoAdded tests to check the buffer type returned during reading.
Alexandre Vassalotti [Tue, 6 May 2008 20:30:41 +0000 (20:30 +0000)]
Added tests to check the buffer type returned during reading.