summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Simplify Counter() API. Replace items keyword argumentRaymond Hettinger2009-01-132-26/+30
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-122-53/+22
* Issue 1696199: Add collections.Counter().Raymond Hettinger2009-01-122-2/+299
* Add tests for invalid format specifiers in strftime, and for handling of inva...Kristján Valur Jónsson2009-01-122-1/+59
* Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size.Raymond Hettinger2009-01-121-1/+46
* Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-114-43/+36
* make tests fail if they can't be importedBenjamin Peterson2009-01-101-3/+0
* Remove an unnecessary check from test_decimal.Mark Dickinson2009-01-101-1/+0
* - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection onMatthias Klose2009-01-101-4/+36
* Issue #3860: GzipFile and BZ2File now support the context manager protocol.Antoine Pitrou2009-01-103-1/+51
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-091-0/+67
* Issue 4336: Let users of HTTPConnection.endheaders() submit a message body t...Kristján Valur Jónsson2009-01-092-9/+3
* Issue 4336: HTTPRequest._send_output() now deals with the case of the messag...Kristján Valur Jónsson2009-01-091-7/+8
* Merged revisions 68306-68308,68340,68368,68422 via svnmerge fromBenjamin Peterson2009-01-094-8/+15
* fixed #4394 make the storage of the password optional in .pypircTarek Ziadé2009-01-086-38/+117
* Forward port r68394 for issue 4816.Raymond Hettinger2009-01-081-9/+33
* Issue #4869: clarify documentation for random.expovariate.Mark Dickinson2009-01-071-3/+5
* Issue #4864: test_msvc9compiler failed on VC6/7.Hirokazu Yamamoto2009-01-071-0/+4
* Use shutil.rmtree rather than os.rmdir.Antoine Pitrou2009-01-061-1/+1
* Issue #1180193: When importing a module from a .pyc (or .pyo) file withAntoine Pitrou2009-01-061-1/+93
* Issue #4272: Add an optional argument to the GzipFile constructor to override...Antoine Pitrou2009-01-042-4/+79
* More Python 2.3 compatibility fixes for decimal.py.Mark Dickinson2009-01-041-4/+4
* Fix Decimal.from_float to use valid Python 2.3 syntax, as perMark Dickinson2009-01-041-3/+11
* using clearer syntaxTarek Ziadé2009-01-041-2/+7
* fixed #1702551: distutils sdist was not pruning VCS directories under win32Tarek Ziadé2009-01-042-1/+117
* Manually merge r68095,68186,68187,68188,68190 from 2.6 branch.Georg Brandl2009-01-033-1/+11
* Reapply r68191.Raymond Hettinger2009-01-031-56/+56
* Issue 4796: Add from_float methods to the decimal module.Raymond Hettinger2009-01-032-56/+155
* Merged revisions 67900-67901,67919,67928,67984,67991-67993,68106-68108,68110 ...Benjamin Peterson2009-01-039-58/+198
* Issue #4812: further renaming of internal Decimal constants, for clarity.Mark Dickinson2009-01-031-56/+56
* Issue #4812: add missing underscore prefix to some internal-use-onlyMark Dickinson2009-01-021-63/+63
* Issue #4615. Document how to use itertools for de-duping.Raymond Hettinger2009-01-021-0/+36
* Fix for issues #841800 and #900506Ronald Oussoren2009-01-021-15/+28
* Fix for issue 1149804Ronald Oussoren2009-01-021-1/+8
* Fix for issue r1737832Ronald Oussoren2009-01-021-5/+8
* Fix for issue 1627952Ronald Oussoren2009-01-021-1/+1
* Fix for issue 900949Ronald Oussoren2009-01-021-11/+9
* Fix for issue1594Ronald Oussoren2009-01-021-0/+55
* Fix for issue3559: No preferences menu in IDLE on OSXRonald Oussoren2009-01-023-2/+9
* fill in actual issue number in testsAntoine Pitrou2009-01-013-3/+3
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-013-4/+48
* #4228: Pack negative values the same way as 2.4Georg Brandl2009-01-011-0/+7
* #4222: document dis.findlabels() and dis.findlinestarts() andGeorg Brandl2009-01-011-1/+2
* #4185: clarify escape behavior of replacement strings.Georg Brandl2009-01-011-2/+4
* simplfy codeBenjamin Peterson2009-01-011-4/+2
* #4795 inspect.isgeneratorfunction() should return False instead of NoneBenjamin Peterson2008-12-311-0/+1
* fix name collision issuesBenjamin Peterson2008-12-311-3/+3
* #4788 qualify some bare except clausesBenjamin Peterson2008-12-311-2/+2
* Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 i...Tarek Ziadé2008-12-302-2/+35
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-301-1/+24