summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* provide a dummy __exit__ on windowsBenjamin Peterson2009-06-301-0/+3
* Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes i...Jesse Noller2009-06-302-2/+71
* Issue 6370: Performance issue with collections.Counter().Raymond Hettinger2009-06-291-2/+4
* Fixed 6365: wrong inplace location for build_ext if the extension had dotsTarek Ziadé2009-06-292-7/+19
* Backport fix for buglet from py3kAntoine Pitrou2009-06-291-1/+2
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-06-286-72/+399
* return locals and cells in get_locals() not bound globals, thoughBenjamin Peterson2009-06-282-3/+5
* Remove stray pychecker directive.Georg Brandl2009-06-281-4/+0
* Fixes the last problem mentioned in issue1202.Gregory P. Smith2009-06-261-1/+1
* #2016 Fix a crash in function call when the **kwargs dictionary is mutatedAmaury Forgeot d'Arc2009-06-251-0/+18
* http://bugs.python.org/issue6192Kristján Valur Jónsson2009-06-241-7/+8
* Remove the ipaddr module per discussion on python-devAmaury Forgeot d'Arc2009-06-232-1907/+0
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+6
* Fix issue 5230 by having pydoc's safeimport check to see if the importR. David Murray2009-06-232-3/+46
* Remove markup from docstringNick Coghlan2009-06-231-2/+2
* Issue 6288: Update contextlib.nested() docstring to reflect new documentationNick Coghlan2009-06-231-10/+8
* #4490 Fix sample code run by "python -m xml.sax.xmlreader"Amaury Forgeot d'Arc2009-06-221-3/+3
* Fix memory bug in bdist_msi. (Commit okayed in issue6319.)Steven Bethard2009-06-211-2/+1
* Issue #6314: logging.basicConfig() performs extra checks on the "level" argum...Vinay Sajip2009-06-211-0/+4
* Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl toGuilherme Polo2009-06-212-31/+45
* Fixed #6164 AIX specific linker argument in Distutils unixcompilerTarek Ziadé2009-06-202-16/+25
* use closuresBenjamin Peterson2009-06-191-3/+3
* show that this one isn't usedBenjamin Peterson2009-06-191-1/+1
* add missing assertion #6313Benjamin Peterson2009-06-191-0/+1
* remove duplicate testBenjamin Peterson2009-06-191-9/+0
* Issue #6274. Fixed a potential FD leak in subprocess.py.Facundo Batista2009-06-191-82/+90
* #6189: The subprocess.py module should be kept compatible with python 2.2Amaury Forgeot d'Arc2009-06-181-3/+12
* #6276: Remove usage of nested() in favor of new with statement with multiple ...Georg Brandl2009-06-181-3/+3
* Issue #6215: Fixed to use self.open() instead of open() or io.open().Hirokazu Yamamoto2009-06-171-18/+18
* Acknowledge the role of the MPFR library in creating cmath_testcases.txtMark Dickinson2009-06-161-0/+10
* starting distutils.ccompiler test coverage and cleanupTarek Ziadé2009-06-162-22/+57
* don't mask encoding errors when decoding a string #6289Benjamin Peterson2009-06-161-0/+12
* Issue #6286: distutils upload command now uses urllib2Tarek Ziadé2009-06-152-62/+52
* code cleanupTarek Ziadé2009-06-151-13/+9
* #6227: Because of a wrong indentation, the test was not testing what it should.Amaury Forgeot d'Arc2009-06-142-1/+3
* when no module is given in a 'from' relative import, make ImportFrom.module NULLBenjamin Peterson2009-06-131-0/+4
* give a better error message when deleting ()Benjamin Peterson2009-06-131-0/+6
* special case release candidatesBenjamin Peterson2009-06-131-2/+4
* allow importing from a module named None if it has an 'as' clauseBenjamin Peterson2009-06-131-0/+2
* prevent import statements from assigning to NoneBenjamin Peterson2009-06-131-0/+6
* keep the slice.step field as NULL if no step expression is givenBenjamin Peterson2009-06-131-0/+6
* Revert r73401 per Raymond Hettinger's request.Alexandre Vassalotti2009-06-122-8/+6
* Make pickling of OrderedDict instances more efficient.Alexandre Vassalotti2009-06-122-6/+8
* Re-enable testing of builtin open() in test_bufio in test_largefileAntoine Pitrou2009-06-122-4/+13
* Try to restore the old test_file and test_univnewlines as new, different filesAntoine Pitrou2009-06-124-95/+461
* Restore the old test_file.py (for the builtin file object) as a new file name...Antoine Pitrou2009-06-121-0/+344
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-1210-2775/+4071
* Support AMD64 in msilib. Set Win64 on reglocator.Martin v. Löwis2009-06-122-5/+14
* Issue 6261: Clarify behavior of random.uniform().Raymond Hettinger2009-06-111-1/+1
* Merged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,...Benjamin Peterson2009-06-1164-304/+383