summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* (Merge 3.2) test.support: don't catch OSError when can_symlink() removes theVictor Stinner2011-06-071-1/+2
|\ | | | | | | temporary symbolic link.
| * 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
| | | | | | | | | | | | instead of an active loop (while True: pass) to limit race conditions.
* | | 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
| | | | | | | | | | | | | | | :class:`multiprocessing.Process`. Also, fix Process.join() to not use polling anymore, when given a timeout.
* | | Issue #11893: Remove obsolete internal wrapper class `SSLFakeFile` in the ↵Antoine Pitrou2011-06-061-23/+3
| | | | | | | | | | | | | | | | | | smtplib module. Patch by Catalin Iacob.
* | | 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
| | | | | | | | | | | | | | | | I reworded “wizard” because it is a Windows-specific term.
| * | | 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
| | | | | | | | | | | | | | | | | | | | Also beautify import lists. Having them grouped by lenght makes it slightly easier to look for a module.
| * | | Merge ABC and distutils touch-ups from 3.2.Éric Araujo2011-06-042-0/+0
| |\ \ \ | | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | I have removed the reST target I added in 38cdca2cc253: it is not necessary, as people can link to the glossary entry or the abc module without it. Two indentation fixes from 3.2 collections.rst have been ported to 3.3 collections.abc.rst.
| | * | 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
| | | | | | | | | | | | | | | | | | | | | | | | | error if faulthandler.dump_tracebacks_later() is missing (e.g. if Python is compiled without threads).
* | | | | Issue #12250: modify "make buildbottest" command line instead of TESTOPTSVictor Stinner2011-06-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add TESTTIMEOUT variable (default: 3600 seconds). Use TESTTIMEOUT=0 to disable the timeout. *** fix
* | | | | 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
| | | | |
* | | | | merge headsBenjamin Peterson2011-06-052-38/+94
|\ \ \ \ \
| * | | | | Issue #12080: Fix a performance issue in Decimal._power_exact that causes ↵Mark Dickinson2011-06-042-38/+94
| |/ / / / | | | | | | | | | | | | | | | some corner-case Decimal.__pow__ calls to take an unreasonably long time.
* | | | | only clear the parser error if it's set (closes #12264)Benjamin Peterson2011-06-051-0/+8
|/ / / /
* | | | (Merge 3.2) Issue #12016: Add test_errorhandle() to TestBase_Mapping ofVictor Stinner2011-06-031-3/+33
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| test_multibytecodec_support. Improve also error message of the test_errorhandle() of TestBase.
| * | Issue #12016: Add test_errorhandle() to TestBase_Mapping ofVictor Stinner2011-06-031-3/+33
| |/ | | | | | | | | test_multibytecodec_support. Improve also error message of the test_errorhandle() of TestBase.
* | Document autoflushing in packaging.test.support.LoggingCatcher.get_logs.Éric Araujo2011-06-031-1/+4
| | | | | | | | | | | | I’m afraid my docstring is not as clear as it should be, but I can’t find a concise way of describing what the code does. Suggestions for improvements welcome.
* | Merge.Charles-François Natali2011-06-031-9/+7
|\ \
| * | Close #12250: Disable the regrtest timeout by defaultVictor Stinner2011-06-031-9/+7
| | | | | | | | | | | | Keep a timeout of 1 hour for buildbots.
* | | Issue #12196: Make test.support's requires_linux_version a decorator.Charles-François Natali2011-06-033-29/+33
|/ /
* | mergeRaymond Hettinger2011-06-032-1/+3
|\ \ | |/
| * Fix named tuples to work with vars().Raymond Hettinger2011-06-032-1/+3
| |
* | Merge packaging doc fixÉric Araujo2011-06-024-16/+31
|\ \
| * | Fix format of warnings from the packaging check commandÉric Araujo2011-06-022-1/+12
| | |
| * | Make packaging.tests.support.LoggingCatcher.get_logs flush the log handler.Éric Araujo2011-06-023-15/+19
| | | | | | | | | | | | | | | This removes the need to call flush manually in each test, except when testing code that creates warning without checking them.
* | | added the generate-setup actionTarek Ziade2011-06-022-2/+18
|/ /
* | Branch mergeÉric Araujo2011-06-019-143/+45
|\ \
| * | The compiler class for EMX was removedÉric Araujo2011-06-012-5/+2
| | |
| * | Fix typos in class namesÉric Araujo2011-06-012-6/+6
| | |
| * | Re-add line that was mistakenly removed alongside RPM support.Éric Araujo2011-05-311-0/+1
| | | | | | | | | | | | This reveals the need for bdist* tests.
| * | Re-apply distutils2 changes lost before the merge of packaging.Éric Araujo2011-05-313-102/+6
| | | | | | | | | | | | | | | wrap_text was removed in favor of standard textwrap but the removal of the function was lost in a bad merge; a change in sdist mysteriously disappeared.
| * | Fix nonsensical name.Éric Araujo2011-05-311-28/+28
| | | | | | | | | | | | | | | | | | | | | The code used “long” to refer to a long option (e.g. --quiet), which was probably changed by 2to3 and not caught by the human operator, and then changed to “integer” by me to avoid shadowing without seeing the real obvious fix.
| * | Fix test name in debug messageÉric Araujo2011-05-311-2/+2
| | |
* | | test_faulthandler: use a longer sleep (2.5 sec instead of 1.3 sec) inVictor Stinner2011-06-011-6/+7
| | | | | | | | | | | | _check_dump_tracebacks_later() to avoid failures if the system is slow.
* | | (Merge 3.2) Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes,Victor Stinner2011-06-013-18/+31
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | the file descriptor of a pipe closed in the parent process is valid in the child process according to fstat(), but the mode of the file descriptor is invalid, and read or write raise an error. test.support.requires_mac_ver() is now a decorator, as suggested by Ezio Melotti, and its docstring is fixed (linux_version => mac_ver).
| * | Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, the fileVictor Stinner2011-06-012-1/+34
| | | | | | | | | | | | | | | | | | | | | | | | descriptor of a pipe closed in the parent process is valid in the child process according to fstat(), but the mode of the file descriptor is invalid, and read or write raise an error. Add also requires_mac_ver() decorator to test.support.
* | | test.support: add requires_mac_ver() functionVictor Stinner2011-06-012-4/+25
| | | | | | | | | | | | Add also linux_version() to __all__.
* | | remove __version__s dependent on subversion keyword expansion (closes #12221)Benjamin Peterson2011-06-015-9/+0
| | |