summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 72241 via svnmerge fromGregory P. Smith2009-05-031-14/+33
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72241 | gregory.p.smith | 2009-05-03 12:37:05 -0700 (Sun, 03 May 2009) | 3 lines Optimization: move RFC defined network constant construction out of the is_*() methods and into module private instances. ........
* missing commit of . for last checkin.Gregory P. Smith2009-05-030-0/+0
|
* Merged revisions 72237 via svnmerge fromGregory P. Smith2009-05-032-78/+65
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72237 | gregory.p.smith | 2009-05-03 11:42:15 -0700 (Sun, 03 May 2009) | 3 lines Issue 5379 - applies patch supplied by philipp hagemeister to fix many problems with the ancient mcast.py demo code. ........
* Mention ipaddr in whatsnew for 3.1.Gregory P. Smith2009-05-031-0/+6
|
* Merged revisions 72213 via svnmerge fromAndrew M. Kuchling2009-05-032-4/+55
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72213 | andrew.kuchling | 2009-05-02 15:17:28 -0400 (Sat, 02 May 2009) | 3 lines #1607951: Make mailbox.Maildir re-read the directories less frequently. This is done by recording the current time -1sec, and not re-reading unless the directory mod. times are >= the recorded time. ........
* Merged revisions 72223 via svnmerge fromAntoine Pitrou2009-05-024-2/+42
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72223 | antoine.pitrou | 2009-05-02 23:13:23 +0200 (sam., 02 mai 2009) | 5 lines Isue #5084: unpickling now interns the attribute names of pickled objects, saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire. ........
* Blocked revisions 71662,72052,72117 via svnmergeBenjamin Peterson2009-05-020-0/+0
| | | | | | | | | | | | | | | | ........ r71662 | vinay.sajip | 2009-04-16 14:15:49 -0500 (Thu, 16 Apr 2009) | 1 line Issue #5768: Change to Unicode output logic and test case for same. ........ r72052 | raymond.hettinger | 2009-04-27 16:12:27 -0500 (Mon, 27 Apr 2009) | 1 line Update spec version number. ........ r72117 | benjamin.peterson | 2009-04-29 15:36:25 -0500 (Wed, 29 Apr 2009) | 1 line run autoconf ........
* try to get merge props correctBenjamin Peterson2009-05-020-0/+0
|
* revert merge properties to something saneBenjamin Peterson2009-05-020-0/+0
|
* Make PyCodec_SurrogateErrors static.Martin v. Löwis2009-05-021-1/+4
|
* Blocked revisions 71780,71961,72117,72155 via svnmergeBenjamin Peterson2009-05-020-0/+0
| | | | | | | | | | | | | | | | | | | | | | ........ r71780 | senthil.kumaran | 2009-04-20 22:24:19 -0500 (Mon, 20 Apr 2009) | 3 lines Fix for the Issue918368 - urllib doesn't correct server returned urls ........ r71961 | georg.brandl | 2009-04-26 04:57:29 -0500 (Sun, 26 Apr 2009) | 2 lines Update pydoc topics. ........ r72117 | benjamin.peterson | 2009-04-29 15:36:25 -0500 (Wed, 29 Apr 2009) | 1 line run autoconf ........ r72155 | senthil.kumaran | 2009-05-01 00:59:52 -0500 (Fri, 01 May 2009) | 4 lines Fix for Issue1648102, based on the MSDN spec: If this parameter specifies the "<local>" macro as the only entry, this function bypasses any host name that does not contain a period. ........
* Merged revisions 72210 via svnmerge fromGregory P. Smith2009-05-021-47/+48
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72210 | gregory.p.smith | 2009-05-02 11:58:21 -0700 (Sat, 02 May 2009) | 2 lines Convert test method names to PEP8 style. ........
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-029-21/+202
| | | | handler.
* ipaddr cleanup for python 3.x:Gregory P. Smith2009-05-021-7/+6
| | | | | | * Get rid of __hex__. * Support bytearray as well as bytes. * Don't double test for integer input.
* make py3k compat code explicitly onBenjamin Peterson2009-05-022-59/+37
|
* Merged revisions 72202 via svnmerge fromMark Dickinson2009-05-021-10/+15
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72202 | mark.dickinson | 2009-05-02 18:55:01 +0100 (Sat, 02 May 2009) | 3 lines Remove unnecessary use of context for long getters. (Related to issue #5880). ........
* Blocked revisions 72199-72200 via svnmergeBenjamin Peterson2009-05-020-0/+0
| | | | | | | | | | | | ........ r72199 | benjamin.peterson | 2009-05-02 12:33:01 -0500 (Sat, 02 May 2009) | 1 line remove py3k compat code ........ r72200 | benjamin.peterson | 2009-05-02 12:35:39 -0500 (Sat, 02 May 2009) | 1 line revert unrelated change ........
* Fixed warning. (Should not use *const* as variable name)Hirokazu Yamamoto2009-05-021-1/+1
|
* Blocked revisions 70443,70471,70702 via svnmergeBenjamin Peterson2009-05-020-0/+0
| | | | | | | | | | | | | | | | ........ r70443 | bob.ippolito | 2009-03-17 18:19:00 -0500 (Tue, 17 Mar 2009) | 1 line merge json library with simplejson 2.0.9 (issue 4136) ........ r70471 | raymond.hettinger | 2009-03-19 14:19:03 -0500 (Thu, 19 Mar 2009) | 3 lines Issue 5381: Add object_pairs_hook to the json module. ........ r70702 | bob.ippolito | 2009-03-29 17:33:58 -0500 (Sun, 29 Mar 2009) | 1 line Issue 5381: fix regression in pure python code path, Issue 5584: fix a decoder bug for unicode float literals outside of a container ........
* port simplejson upgrade from the trunk #4136Benjamin Peterson2009-05-0215-902/+1954
| | | | | | json also now works only with unicode strings Patch by Antoine Pitrou; updated by me
* Merged revisions 72189 via svnmerge fromEric Smith2009-05-021-0/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72189 | eric.smith | 2009-05-02 05:58:09 -0400 (Sat, 02 May 2009) | 1 line Keep py3k and trunk code in sync. ........
* Merged revisions 72183-72184 via svnmerge fromGregory P. Smith2009-05-022-77/+80
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72183 | georg.brandl | 2009-05-01 14:28:35 -0700 (Fri, 01 May 2009) | 2 lines Review ipaddr docs and add them in the TOC under "Internet protocols". ........ r72184 | georg.brandl | 2009-05-01 14:30:25 -0700 (Fri, 01 May 2009) | 1 line Fix directive name. ........
* Merged revisions 72173 via svnmerge fromGregory P. Smith2009-05-014-0/+2262
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72173 | gregory.p.smith | 2009-05-01 12:59:52 -0700 (Fri, 01 May 2009) | 5 lines Adds the ipaddr module to the standard library. Issue #3959. Based off of subversion r69 from http://code.google.com/p/ipaddr-py/ This code is 2to3 safe, I'll merge it into py3k later this afternoon. ........
* use C character code to simplify #5410Benjamin Peterson2009-05-011-12/+6
|
* Merged revisions 72180 via svnmerge fromAntoine Pitrou2009-05-012-0/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72180 | antoine.pitrou | 2009-05-01 23:16:14 +0200 (ven., 01 mai 2009) | 4 lines Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully. Patch by Floris Bruynooghe. ........
* Merged revisions 72178 via svnmerge fromAntoine Pitrou2009-05-013-4/+53
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72178 | antoine.pitrou | 2009-05-01 22:55:35 +0200 (ven., 01 mai 2009) | 4 lines Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an error when a named pipe is encountered, rather than blocking infinitely. ........
* versionaddedBenjamin Peterson2009-05-011-0/+4
|
* add myselfBenjamin Peterson2009-05-012-1/+3
|
* implement a detach() method for BufferedIOBase and TextIOBase #5883Benjamin Peterson2009-05-017-15/+214
|
* Merged revisions 72167 via svnmerge fromWalter Dörwald2009-05-0110-67/+78
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72167 | walter.doerwald | 2009-05-01 19:35:37 +0200 (Fr, 01 Mai 2009) | 5 lines Make test.test_support.EnvironmentVarGuard behave like a dictionary. All changes are mirrored to the underlying os.environ dict, but rolled back on exit from the with block. ........
* Issue #5859: Remove '%f' to '%g' formatting switch for large floats.Mark Dickinson2009-05-016-19/+27
|
* Issue #5859: Remove use of fixed-length buffers for float formattingMark Dickinson2009-05-014-99/+91
| | | | | | in unicodeobject.c and the fallback version of PyOS_double_to_string. As a result, operations like '%.120e' % 12.34 no longer raise an exception.
* Merged revisions 72159 via svnmerge fromGeorg Brandl2009-05-011-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72159 | georg.brandl | 2009-05-01 10:51:37 +0200 (Fr, 01 Mai 2009) | 2 lines #5889: remove comma at the end of a list that some C compilers don't like. ........
* Fix for Issue1648102, based on the MSDN spec: If this parameter specifies theSenthil Kumaran2009-05-011-10/+3
| | | | | "<local>" macro as the only entry, this function bypasses any host name that does not contain a period.
* - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specifyMatthias Klose2009-04-304-32/+116
| | | | the order that backends for the dbm extension are checked.
* Issue #1588: Add complex.__format__.Eric Smith2009-04-306-53/+426
|
* Blocked revisions 72137 via svnmergeEric Smith2009-04-300-0/+0
| | | | | | | | ........ r72137 | eric.smith | 2009-04-29 20:58:58 -0400 (Wed, 29 Apr 2009) | 1 line Issue #1588: Add complex.__format__. ........
* Merged revisions 72135 via svnmerge fromBenjamin Peterson2009-04-301-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72135 | benjamin.peterson | 2009-04-29 19:23:11 -0500 (Wed, 29 Apr 2009) | 1 line prevent ref cycles by removing bound method on close() ........
* fix test__all__Benjamin Peterson2009-04-291-1/+1
|
* Blocked revisions 72126-72127 via svnmergeMark Dickinson2009-04-290-0/+0
| | | | | | | | | | | | ........ r72126 | mark.dickinson | 2009-04-29 22:56:53 +0100 (Wed, 29 Apr 2009) | 2 lines Remove format_float and use _PyOS_double_to_string instead. ........ r72127 | mark.dickinson | 2009-04-29 22:57:15 +0100 (Wed, 29 Apr 2009) | 2 lines Backport some of the float formatting tests from py3k. ........
* add UnsupportedOperation to __all__Benjamin Peterson2009-04-291-1/+1
|
* Document the fact that 'compname' and 'comptype' are bytes.R. David Murray2009-04-292-11/+12
|
* Blocked revisions 72119 via svnmergeMark Dickinson2009-04-290-0/+0
| | | | | | | | | ........ r72119 | mark.dickinson | 2009-04-29 21:41:00 +0100 (Wed, 29 Apr 2009) | 3 lines Issue #5864: format(1234.5, '.4') gives misleading result (Backport of r72109 from py3k.) ........
* Merged revisions 72115 via svnmerge fromR. David Murray2009-04-291-7/+53
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72115 | r.david.murray | 2009-04-29 16:15:18 -0400 (Wed, 29 Apr 2009) | 2 lines More aifc tests. ........
* Issue #5864: Fix problem with empty code formatting for floats,Mark Dickinson2009-04-294-78/+124
| | | | where a bogus trailing zero could be added.
* Merged revisions 72100-72101 via svnmerge fromR. David Murray2009-04-296-9/+63
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72100 | r.david.murray | 2009-04-29 09:17:37 -0400 (Wed, 29 Apr 2009) | 7 lines Fix issue 2245. aifc now skips any chunk type it doesn't actually process instead of throwing errors for anything not in an explicit skip list. This is per this spec: http://www.cnpbagwell.com/aiff-c.txt. Spec reference and test sound file provided by Santiago Peresón, fix based on patch by Hiroaki Kawai. ........ r72101 | r.david.murray | 2009-04-29 09:51:44 -0400 (Wed, 29 Apr 2009) | 2 lines Now that we've got a test_aifc, add a few tests. ........
* Remove dependency on the collections module.Raymond Hettinger2009-04-291-3/+41
|
* Added test that didn't make it in an svnmerge.Eric Smith2009-04-291-0/+62
|
* Merged revisions 72094 via svnmerge fromTarek Ziadé2009-04-292-1/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72094 | tarek.ziade | 2009-04-29 10:03:46 +0200 (Wed, 29 Apr 2009) | 1 line Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore ........
* Die, buffer(), die.Georg Brandl2009-04-291-1/+1
|