summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
* | | (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
| | |
* | | (Merge 3.2) Close #12085: Fix an attribute error in subprocess.Popen destructorVictor Stinner2011-05-312-1/+14
|\ \ \ | |/ / | | | | | | | | | if the constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
| * | Close #12085: Fix an attribute error in subprocess.Popen destructor if theVictor Stinner2011-05-312-1/+14
| | | | | | | | | | | | | | | constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
* | | Issue #8407: test_signal doesn't check signal delivery orderVictor Stinner2011-05-311-5/+6
| | | | | | | | | | | | Tthe signal delivery order is not portable or reliable.
* | | code cleanup in packaging.runTarek Ziade2011-05-311-8/+4
| | |
* | | make sure we check for write access before starting the install, and add ↵Tarek Ziade2011-05-314-16/+91
| | | | | | | | | | | | correct exit code
* | | Tidy up the additional string module tests added at the Pycon sprints ↵Nick Coghlan2011-05-312-43/+58
| | | | | | | | | | | | (closes #11505)
* | | improved pysetup list UITarek Ziade2011-05-311-1/+9
| | |
* | | merge headsBenjamin Peterson2011-05-3119-46/+161
|\ \ \
| * \ \ (Merge 3.2) Issue #12057: Add tests for ISO 2022 codecsVictor Stinner2011-05-306-1/+77
| |\ \ \ | | |/ / | | | | | | | | iso2022_jp, iso2022_jp_2 and iso2022_kr
| | * | Issue #12057: Add tests for ISO 2022 codecsVictor Stinner2011-05-306-1/+77
| | | | | | | | | | | | | | | | iso2022_jp, iso2022_jp_2 and iso2022_kr
| | * | Branch mergeÉric Araujo2011-05-291-6/+10
| | |\ \
| | * | | Fix ProcessTestCasePOSIXPurePython to test the module from import whenGregory P. Smith2011-05-281-9/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | _posixsubprocess doesn't exist rather than simply stubbing it out after the fact. This adds coverage for the RuntimeWarning as well as using the pure python _create_pipe instead of using _posixsubprocess.cloexec_pipe unintentionally with the pure python code. Ironically: I don't think any platform should ever actually _use_ the pure Python subprocess code on POSIX platforms anymore. This at least tests it properly in this stable branch. The pure python code for this is likely to be removed in 3.3.
| * | | | better UI when the user does not have the perms to remove the projectTarek Ziade2011-05-302-7/+48
| | | | |
| * | | | Close #12028: Make threading._get_ident() public, rename it toVictor Stinner2011-05-309-31/+28
| | | | | | | | | | | | | | | | | | | | | | | | | threading.get_ident() and document it. This function was used by _thread.get_ident().
| * | | | Close #12089: Remove outdated and unused code from regrtest.Victor Stinner2011-05-301-4/+0
| | | | |
| * | | | Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) callsVictor Stinner2011-05-301-2/+7
| | | | | | | | | | | | | | | | | | | | encreset() instead of decreset().