summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | Merged upstream changes.Vinay Sajip2011-06-092-10/+66
|\ \ \ \ \ \ \
| * | | | | | | #10424: argument names are now included in the missing argument messageR David Murray2011-06-092-10/+66
* | | | | | | | Made time formats in Formatter more configurable.Vinay Sajip2011-06-091-2/+5
|/ / / / / / /
* | | | | | | Merged fix for issue #12168 from 3.2.Vinay Sajip2011-06-092-3/+11
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | Issue #12168: SysLogHandler now allows NUL termination to be controlled using...Vinay Sajip2011-06-091-1/+5
* | | | | | | Merge 3.2Brian Curtin2011-06-091-5/+3
|\ \ \ \ \ \ \ | |/ / / / / / | | | | / / / | |_|_|/ / / |/| | | | |
| * | | | | Correction to 88e318166eaf - Issue #11583Brian Curtin2011-06-091-5/+3
* | | | | | Branch mergeÉric Araujo2011-06-0914-63/+47
|\ \ \ \ \ \
| * | | | | | Fix example in packaging test_config.Éric Araujo2011-06-091-2/+2
| * | | | | | Style change in packaging: use “not in” over “not x in”.Éric Araujo2011-06-085-16/+16
| * | | | | | Packaging: always use repr to display project names.Éric Araujo2011-06-081-7/+8
| * | | | | | Fix misunderstanding of how booleans workÉric Araujo2011-06-081-1/+2
| * | | | | | Packaging cleanup: normalize print calls.Éric Araujo2011-06-084-17/+19
| * | | | | | Packaging cleanup: remove use of script_name where obsoleteÉric Araujo2011-06-086-20/+0
* | | | | | | Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat.Brian Curtin2011-06-081-0/+13
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat.Brian Curtin2011-06-081-0/+13
* | | | | | | Issue #12021: Make mmap's read() method argument optional. Patch by PetriCharles-François Natali2011-06-081-0/+29
* | | | | | | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killedAntoine Pitrou2011-06-085-91/+190
| |/ / / / / |/| | | | |
* | | | | | Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon)Éric Araujo2011-06-071-6/+1
* | | | | | Branch merge: packaging fixesÉric Araujo2011-06-075-85/+104
|\ \ \ \ \ \
| * | | | | | Fix UnboundLocalError in a finally block of one packaging testÉric Araujo2011-06-061-1/+1
| * | | | | | Fix sdist to always include setup.cfg (#11092), to comply with the specÉric Araujo2011-06-063-19/+32
| * | | | | | Use strings instead of sets of lines in packaging.create tests.Éric Araujo2011-06-061-57/+63
| * | | | | | Fix commentÉric Araujo2011-06-061-1/+1
| * | | | | | Update comments in sysconfig.cfgÉric Araujo2011-06-061-7/+7
| | |_|_|/ / | |/| | | |
* | | | | | #12274: use proper escaping for % in IDLE config (merged from 3.2).Łukasz Langa2011-06-071-2/+2
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | #12274: use proper escaping for % in IDLE config.Łukasz Langa2011-06-071-2/+2
* | | | | | (Merge 3.2) test.support: don't catch OSError when can_symlink() removes theVictor Stinner2011-06-071-1/+2
|\ \ \ \ \ \ | |/ / / / /
| * | | | | test.support: can_symlink() removes the temporary symbolic linkVictor Stinner2011-06-071-1/+4
| | |_|_|/ | |/| | |
| * | | | Branch mergeÉric Araujo2011-06-062-0/+0
| |\ \ \ \
* | | | | | Use a sleep for test_subprocess timeout testVictor Stinner2011-06-061-2/+3
* | | | | | Issue #12196: Make os.pipe2() flags argument mandatory.Charles-François Natali2011-06-061-2/+2
* | | | | | Whitespace normalizationAntoine Pitrou2011-06-061-1/+0
* | | | | | Issue #12040: Expose a new attribute `sentinel` on instances ofAntoine Pitrou2011-06-064-14/+90
* | | | | | Issue #11893: Remove obsolete internal wrapper class `SSLFakeFile` in the smt...Antoine Pitrou2011-06-061-23/+3
| |_|/ / / |/| | | |
* | | | | Branch mergeÉric Araujo2011-06-069-58/+52
|\ \ \ \ \
| * | | | | Update doctring now that Python has real booleansÉric Araujo2011-06-051-1/+1
| * | | | | Improve consistency in questions asked by packaging.create.Éric Araujo2011-06-041-10/+10
| * | | | | Clean up packaging.create and add TODO notes for future cleanupsÉric Araujo2011-06-041-8/+14
| * | | | | Make help messages in packaging.run more consistentÉric Araujo2011-06-041-7/+6
| * | | | | Cleanup in packaging: don’t unnecessarily instantiate exceptionsÉric Araujo2011-06-044-4/+4
| * | | | | Improve a few docstrings in packaging.Éric Araujo2011-06-042-20/+12
| * | | | | Merge ABC and distutils touch-ups from 3.2.Éric Araujo2011-06-042-0/+0
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | Remove unneeded executable bit on two distutils filesÉric Araujo2011-06-042-0/+0
| * | | | | Branch mergeÉric Araujo2011-06-043-8/+5
| |\ \ \ \ \
| | * | | | | Use list constructor or built-in method instead of copy moduleÉric Araujo2011-06-043-8/+5
* | | | | | | Issue #12250: regrtest --timeout displays a warning instead of failing with anVictor Stinner2011-06-061-6/+7
* | | | | | | Issue #12250: modify "make buildbottest" command line instead of TESTOPTSVictor Stinner2011-06-061-3/+3
* | | | | | | greatly improve argument parsing error messages (closes #12265)Benjamin Peterson2011-06-063-61/+132
* | | | | | | Closes issue #11557: removal of non-idiomatic code in test_logging.Vinay Sajip2011-06-051-31/+25