summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Initialized merge tracking via "svnmerge" with revisions "1-68679" fromBenjamin Peterson2009-03-030-0/+0
| | | | svn+ssh://pythondev@svn.python.org/python/branches/io-c
* Blocked revisions 70149 via svnmergeBenjamin Peterson2009-03-030-0/+0
| | | | | | | | | | ........ r70149 | raymond.hettinger | 2009-03-03 16:59:25 -0600 (Tue, 03 Mar 2009) | 5 lines Backport 70140, 70141, 70143, and 70144. Adds tests, switches from list to deque, fixes __reduce__ which was unnecessarily copying __keys. ........
* don't bother with version in doc buildsBenjamin Peterson2009-03-031-1/+1
|
* Additional test for __reduce__.Raymond Hettinger2009-03-031-0/+8
|
* Now that __keys are fully hidden, switch the underlying structureRaymond Hettinger2009-03-031-2/+2
| | | | | to deque() which futher reduces the temptation to index or resort. Also, it is a bit faster for some cases.
* Merged revisions 70137 via svnmerge fromHirokazu Yamamoto2009-03-033-33/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70137 | hirokazu.yamamoto | 2009-03-04 07:18:14 +0900 | 1 line Issue #5179: Fixed subprocess handle leak on failure on windows. ........
* Add another test.Raymond Hettinger2009-03-031-0/+9
|
* Fix-up __reduce__ which could not reach the __keys variable indirectly.'Raymond Hettinger2009-03-031-2/+6
|
* Blocked revisions 70136 via svnmergeHirokazu Yamamoto2009-03-030-0/+0
| | | | | | | | ........ r70136 | hirokazu.yamamoto | 2009-03-04 07:05:57 +0900 | 1 line Fixed memory leak. ........
* Blocked revisions 70081,70120-70123,70126,70131-70132 via svnmergeBenjamin Peterson2009-03-030-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ........ r70081 | raymond.hettinger | 2009-02-28 20:04:32 -0600 (Sat, 28 Feb 2009) | 1 line Fix docs for ConfigParser. ........ r70120 | raymond.hettinger | 2009-03-02 22:45:34 -0600 (Mon, 02 Mar 2009) | 1 line Backport PEP 372: OrderedDict() ........ r70121 | raymond.hettinger | 2009-03-02 22:51:24 -0600 (Mon, 02 Mar 2009) | 3 lines Backport 70106: Add OrderedDict support to collections.namedtuple(). ........ r70122 | raymond.hettinger | 2009-03-02 23:00:37 -0600 (Mon, 02 Mar 2009) | 3 lines Backport 70111: Let configparser use ordered dicts by default. ........ r70123 | raymond.hettinger | 2009-03-02 23:11:56 -0600 (Mon, 02 Mar 2009) | 1 line Fix markup. ........ r70126 | raymond.hettinger | 2009-03-03 01:12:09 -0600 (Tue, 03 Mar 2009) | 1 line Beef-up tests. ........ r70131 | raymond.hettinger | 2009-03-03 14:53:51 -0600 (Tue, 03 Mar 2009) | 1 line Make the underlying data structure more private. ........ r70132 | raymond.hettinger | 2009-03-03 15:13:51 -0600 (Tue, 03 Mar 2009) | 1 line Minor simplification. ........
* Make the underlying data structure more private.Raymond Hettinger2009-03-031-9/+13
|
* Give dict views a helpful __repr__.Raymond Hettinger2009-03-033-6/+24
|
* Blocked revisions 70119 via svnmergeHirokazu Yamamoto2009-03-030-0/+0
| | | | | | | | ........ r70119 | kristjan.jonsson | 2009-03-03 12:20:42 +0900 | 1 line Fix SHA_new and MD5_new, that would crash if not given initial data ........
* Fixed memory leak on failure. This is related to issue5403 but won't crash ↵Hirokazu Yamamoto2009-03-034-8/+38
| | | | on py3k.
* Issue5407Kristján Valur Jónsson2009-03-031-0/+6
| | | | | | Broken Py3.1 release build in Visual Studio 2005 The CRT runtime structure that holds ioinfo doesn't appear to match the decleration from the headers provided with the Visual Studio 2005 crt sources. In Release, an extra 8 bytes follow the final BOOL. I cannot explain this, but the code works now, both in 32 bits and 64
* Fix markup.Raymond Hettinger2009-03-031-1/+1
|
* Fix bootstrapping problem where setup.py was using configparserRaymond Hettinger2009-03-031-2/+7
| | | | before _collections had been built.
* instead of hacking __locals__ in during bytecode generation, put it in the ↵Benjamin Peterson2009-03-032-22/+6
| | | | symtable
* Fix markup.Raymond Hettinger2009-03-031-3/+3
|
* re-merge r69268 (issue4804) from trunk:Amaury Forgeot d'Arc2009-03-021-0/+18
| | | | | Now that the C runtime assertions are not silenced any more, we must provide checks for the format string of strftime
* ignore the coding cookie in compile(), exec(), and eval() if the source is a ↵Benjamin Peterson2009-03-0210-14/+63
| | | | string #4626
* Let configparser use ordered dicts by default.Raymond Hettinger2009-03-023-1/+13
|
* Merged revisions 70107 via svnmerge fromBenjamin Peterson2009-03-023-2/+31
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70107 | benjamin.peterson | 2009-03-02 16:41:42 -0600 (Mon, 02 Mar 2009) | 1 line give httplib.IncompleteRead a more sane repr #4308 ........
* Add OrderedDict support to collections.namedtuple().Raymond Hettinger2009-03-023-10/+16
|
* Fix versionchanged.Raymond Hettinger2009-03-021-1/+1
|
* fix versionaddedBenjamin Peterson2009-03-021-2/+2
|
* Missed my last update to __eq__ to check matching length.Raymond Hettinger2009-03-021-3/+2
|
* PEP 372: OrderedDict()Raymond Hettinger2009-03-024-6/+300
|
* Expose importlib.util.set___package__.Brett Cannon2009-03-024-35/+77
|
* Fixed typo.Hirokazu Yamamoto2009-03-021-1/+1
|
* Merged revisions 70094 via svnmerge fromTarek Ziadé2009-03-022-43/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70094 | tarek.ziade | 2009-03-02 06:38:44 +0100 (Mon, 02 Mar 2009) | 1 line removing the force-optimized option as discussed in #1533164 ........
* Merged revisions 70090 via svnmerge fromGregory P. Smith2009-03-023-9/+24
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70090 | gregory.p.smith | 2009-03-01 21:13:57 -0800 (Sun, 01 Mar 2009) | 3 lines Adds an optional flags argument to re.split, re.sub and re.subn to be consistent with the other re module functions. ........
* Merged r70088 from trunk (re documentation update)Gregory P. Smith2009-03-021-8/+12
|
* Fix docs for ConfigParser.Raymond Hettinger2009-03-011-2/+2
|
* Blocked revisions 70078 via svnmergeGeorg Brandl2009-02-280-0/+0
| | | | | | | | ........ r70078 | georg.brandl | 2009-02-28 22:33:10 +0100 (Sa, 28 Feb 2009) | 2 lines Fix 3k-style metaclass syntax in docstrings. ........
* Blocked revisions 70071 via svnmergeJeffrey Yasskin2009-02-280-0/+0
| | | | | | | | | | | ........ r70071 | jeffrey.yasskin | 2009-02-28 11:03:21 -0800 (Sat, 28 Feb 2009) | 5 lines Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with POP_JUMP_IF_{TRUE,FALSE} and JUMP_IF_{TRUE,FALSE}_OR_POP. This avoids executing a POP_TOP on each conditional and sometimes allows the peephole optimizer to skip a JUMP_ABSOLUTE entirely. It speeds up list comprehensions significantly. ........
* Fix 2 oversights from r69961.Jeffrey Yasskin2009-02-281-3/+5
|
* #4967 fix buggy read()Benjamin Peterson2009-02-281-36/+33
|
* Merged revisions 70062 via svnmerge fromMark Dickinson2009-02-281-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70062 | mark.dickinson | 2009-02-28 15:50:40 +0000 (Sat, 28 Feb 2009) | 2 lines Issue #5393: typo in cmath.cos and cmath.cosh docstring ........
* Merged revisions 70056 via svnmerge fromHirokazu Yamamoto2009-02-283-1/+32
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70056 | hirokazu.yamamoto | 2009-02-28 21:13:07 +0900 | 2 lines Issue #1733986: Fixed mmap crash in accessing elements of second map object with same tagname but larger size than first map. (Windows) ........
* Merged revisions 70052 via svnmerge fromHirokazu Yamamoto2009-02-283-4/+52
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70052 | hirokazu.yamamoto | 2009-02-28 19:31:54 +0900 | 2 lines Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer overrun. ........
* Merged revisions 70049 via svnmerge fromTarek Ziadé2009-02-283-6/+184
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70049 | tarek.ziade | 2009-02-28 11:08:02 +0100 (Sat, 28 Feb 2009) | 1 line Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command ........
* Blocked revisions 70011,70016 via svnmergeBenjamin Peterson2009-02-270-0/+0
| | | | | | | | | | | | | | | ........ r70011 | brett.cannon | 2009-02-26 21:38:28 -0600 (Thu, 26 Feb 2009) | 5 lines Fix a bug where code was trying to index an int. Left over from the situation from using str.rpartition to str.rindex. Closes Issue5213. ........ r70016 | raymond.hettinger | 2009-02-27 02:09:47 -0600 (Fri, 27 Feb 2009) | 1 line Give mapping views a usable repr. ........
* another instance of #804543: use strdup() when saving the result of ↵Georg Brandl2009-02-271-1/+2
| | | | setlocale() because it could be overwritten by subsequent setlocale()s.
* #5360: replace PyObject_HEAD_INIT by PyVarObject_HEAD_INIT.Georg Brandl2009-02-272-6/+6
|
* #5360: remove RO which has been kicked from 3k.Georg Brandl2009-02-271-3/+0
|
* #5357: fix incomprehensible paragraph in urlopen() doc.Georg Brandl2009-02-271-11/+11
|
* Merged revisions 70017 via svnmerge fromTarek Ziadé2009-02-277-38/+186
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70017 | tarek.ziade | 2009-02-27 13:53:34 +0100 (Fri, 27 Feb 2009) | 1 line Issue #5052: make Distutils compatible with 2.3 again. ........
* Give mapping views a usable repr.Raymond Hettinger2009-02-271-0/+3
|
* Merged revisions 70007 via svnmerge fromTarek Ziadé2009-02-272-126/+157
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70007 | tarek.ziade | 2009-02-27 03:14:35 +0100 (Fri, 27 Feb 2009) | 1 line more info on long_description ........