| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixes the last problem mentioned in issue1202. | Gregory P. Smith | 2009-06-26 | 1 | -1/+1 |
|
|
* | #2016 Fix a crash in function call when the **kwargs dictionary is mutated | Amaury Forgeot d'Arc | 2009-06-25 | 1 | -0/+18 |
|
|
* | http://bugs.python.org/issue6192 | Kristján Valur Jónsson | 2009-06-24 | 1 | -7/+8 |
|
|
* | Remove the ipaddr module per discussion on python-dev | Amaury Forgeot d'Arc | 2009-06-23 | 2 | -1907/+0 |
|
|
* | Issue 6329: Fix iteration for memoryviews. | Raymond Hettinger | 2009-06-23 | 1 | -0/+6 |
|
|
* | Fix issue 5230 by having pydoc's safeimport check to see if the import | R. David Murray | 2009-06-23 | 2 | -3/+46 |
|
|
* | Remove markup from docstring | Nick Coghlan | 2009-06-23 | 1 | -2/+2 |
|
|
* | Issue 6288: Update contextlib.nested() docstring to reflect new documentation | Nick Coghlan | 2009-06-23 | 1 | -10/+8 |
|
|
* | #4490 Fix sample code run by "python -m xml.sax.xmlreader" | Amaury Forgeot d'Arc | 2009-06-22 | 1 | -3/+3 |
|
|
* | Fix memory bug in bdist_msi. (Commit okayed in issue6319.) | Steven Bethard | 2009-06-21 | 1 | -2/+1 |
|
|
* | Issue #6314: logging.basicConfig() performs extra checks on the "level" argum... | Vinay Sajip | 2009-06-21 | 1 | -0/+4 |
|
|
* | Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to | Guilherme Polo | 2009-06-21 | 2 | -31/+45 |
|
|
* | Fixed #6164 AIX specific linker argument in Distutils unixcompiler | Tarek Ziadé | 2009-06-20 | 2 | -16/+25 |
|
|
* | use closures | Benjamin Peterson | 2009-06-19 | 1 | -3/+3 |
|
|
* | show that this one isn't used | Benjamin Peterson | 2009-06-19 | 1 | -1/+1 |
|
|
* | add missing assertion #6313 | Benjamin Peterson | 2009-06-19 | 1 | -0/+1 |
|
|
* | remove duplicate test | Benjamin Peterson | 2009-06-19 | 1 | -9/+0 |
|
|
* | Issue #6274. Fixed a potential FD leak in subprocess.py. | Facundo Batista | 2009-06-19 | 1 | -82/+90 |
|
|
* | #6189: The subprocess.py module should be kept compatible with python 2.2 | Amaury Forgeot d'Arc | 2009-06-18 | 1 | -3/+12 |
|
|
* | #6276: Remove usage of nested() in favor of new with statement with multiple ... | Georg Brandl | 2009-06-18 | 1 | -3/+3 |
|
|
* | Issue #6215: Fixed to use self.open() instead of open() or io.open(). | Hirokazu Yamamoto | 2009-06-17 | 1 | -18/+18 |
|
|
* | Acknowledge the role of the MPFR library in creating cmath_testcases.txt | Mark Dickinson | 2009-06-16 | 1 | -0/+10 |
|
|
* | starting distutils.ccompiler test coverage and cleanup | Tarek Ziadé | 2009-06-16 | 2 | -22/+57 |
|
|
* | don't mask encoding errors when decoding a string #6289 | Benjamin Peterson | 2009-06-16 | 1 | -0/+12 |
|
|
* | Issue #6286: distutils upload command now uses urllib2 | Tarek Ziadé | 2009-06-15 | 2 | -62/+52 |
|
|
* | code cleanup | Tarek Ziadé | 2009-06-15 | 1 | -13/+9 |
|
|
* | #6227: Because of a wrong indentation, the test was not testing what it should. | Amaury Forgeot d'Arc | 2009-06-14 | 2 | -1/+3 |
|
|
* | when no module is given in a 'from' relative import, make ImportFrom.module NULL | Benjamin Peterson | 2009-06-13 | 1 | -0/+4 |
|
|
* | give a better error message when deleting () | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
|
|
* | special case release candidates | Benjamin Peterson | 2009-06-13 | 1 | -2/+4 |
|
|
* | allow importing from a module named None if it has an 'as' clause | Benjamin Peterson | 2009-06-13 | 1 | -0/+2 |
|
|
* | prevent import statements from assigning to None | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
|
|
* | keep the slice.step field as NULL if no step expression is given | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
|
|
* | Revert r73401 per Raymond Hettinger's request. | Alexandre Vassalotti | 2009-06-12 | 2 | -8/+6 |
|
|
* | Make pickling of OrderedDict instances more efficient. | Alexandre Vassalotti | 2009-06-12 | 2 | -6/+8 |
|
|
* | Re-enable testing of builtin open() in test_bufio in test_largefile | Antoine Pitrou | 2009-06-12 | 2 | -4/+13 |
|
|
* | Try to restore the old test_file and test_univnewlines as new, different files | Antoine Pitrou | 2009-06-12 | 4 | -95/+461 |
|
|
* | Restore the old test_file.py (for the builtin file object) as a new file name... | Antoine Pitrou | 2009-06-12 | 1 | -0/+344 |
|
|
* | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 10 | -2775/+4071 |
|
|
* | Support AMD64 in msilib. Set Win64 on reglocator. | Martin v. Löwis | 2009-06-12 | 2 | -5/+14 |
|
|
* | Issue 6261: Clarify behavior of random.uniform(). | Raymond Hettinger | 2009-06-11 | 1 | -1/+1 |
|
|
* | Merged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,... | Benjamin Peterson | 2009-06-11 | 64 | -304/+383 |
|
|
* | use multi-with syntax | Benjamin Peterson | 2009-06-11 | 1 | -2/+1 |
|
|
* | pep8-fied cygwinccompiler module | Tarek Ziadé | 2009-06-11 | 1 | -65/+30 |
|
|
* | Issue #5262: Improved fix. | Vinay Sajip | 2009-06-11 | 1 | -11/+11 |
|
|
* | Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFil... | Vinay Sajip | 2009-06-11 | 1 | -5/+10 |
|
|
* | #6263 fixed syntax error in distutils.cygwinccompiler | Tarek Ziadé | 2009-06-11 | 2 | -2/+35 |
|
|
* | removed the last string.split() call | Tarek Ziadé | 2009-06-11 | 1 | -2/+1 |
|
|
* | Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in ... | Tarek Ziadé | 2009-06-11 | 2 | -7/+47 |
|
|
* | Distutils: started code cleanup and test coverage for cygwinccompiler | Tarek Ziadé | 2009-06-10 | 2 | -71/+170 |
|
|