summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* More comprehensive compileall cli tests, and fixes.R. David Murray2010-12-142-89/+176
|
* Freshen README contentsAntoine Pitrou2010-12-141-5/+2
|
* NitsRaymond Hettinger2010-12-141-9/+10
|
* Logging documentation update.Vinay Sajip2010-12-141-154/+159
|
* SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD)Gregory P. Smith2010-12-141-1/+1
|
* #775964: skip YP/NIS entries instead of failing the testR. David Murray2010-12-145-4/+20
| | | | | | | Also includes doc updates mentioning that these entries may not be retrievable via getgrnam and getgrgid. Patch by Bobby Impollonia.
* Fix "BytesWarning: str() on a bytes instance"Gregory P. Smith2010-12-141-1/+2
|
* Issue #1731717: Fixed the problem where subprocess.wait() could cause anGregory P. Smith2010-12-144-2/+34
| | | | | OSError exception when The OS had been told to ignore SIGCLD in our process or otherwise not wait for exiting child processes.
* #10695: use %s not %d so that a string 'port' does not cause a debug tracebackR. David Murray2010-12-143-1/+14
| | | | | | Passing the port as a string value works fine in regular mode, but if you turned debug on it would throw an error trying to print the port number, which is surprising and confusing.
* Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest.Gregory P. Smith2010-12-145-27/+79
| | | | | | | | Issue #7213: Change the close_fds default on Windows to better match the new default on POSIX. True when possible (False if stdin/stdout/stderr are supplied). Update the documentation to reflect all of the above.
* Turn on regrtest -W (rerun immediately) option for Windows, too.R. David Murray2010-12-141-1/+1
|
* 9162: fix license in multiprocessing filesR. David Murray2010-12-1414-13/+352
|
* Use skipIf instead of a return when attribute doesn't exist.R. David Murray2010-12-141-2/+2
|
* #10699: fix docstring for tzset: it does not take a parameterR. David Murray2010-12-141-1/+1
| | | | Thanks to Garrett Cooper for the fix.
* #1078919: make add_header automatically do RFC2231 encoding when needed.R. David Murray2010-12-134-5/+66
| | | | | Also document the use of three-tuples if control of the charset and language is desired.
* #10698: fix typo in example.R. David Murray2010-12-131-1/+1
|
* Logging documentation update.Vinay Sajip2010-12-131-2/+5
|
* Logging documentation update.Vinay Sajip2010-12-131-110/+128
|
* Issue 10687. When --without-pymalloc is given, $VERSION is the same asBarry Warsaw2010-12-132-9/+15
| | | | | | | $LDVERSION, which screws up the sym/hard-links. This avoids those games when $VERSION == $LDVERSION. Also, include a drive-by fix for an obvious syntax error.
* Captured IO streams with embedded backslashes are always such a fun ↵Nick Coghlan2010-12-131-2/+8
| | | | combination...
* Logging documentatio update.Vinay Sajip2010-12-131-1/+2
|
* Mention the subprocess.Popen close_fds default change. Fixup *s to -s.Gregory P. Smith2010-12-131-2/+6
|
* regenerate configure based on r87207.Gregory P. Smith2010-12-131-1/+7
|
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-1310-17/+195
| | | | | the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.
* Get rid of the close_fds DeprecationWarning. Changes the default on a perGregory P. Smith2010-12-133-46/+26
| | | | | | platform basis. It remains False on Windows and changes to True on all other platforms (POSIX). Based on python-dev discussion and http://bugs.python.org/issue7213.
* issue 10683Kristján Valur Jónsson2010-12-131-0/+11
| | | | | | | | | | When the solution is converted to Visual Studio 2010, the command line to invoke make_buildinfo changes from: $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)\" to $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)" If the final backslash is omitted, the backslash in IntDir will escape the quote, thus passing the quote in as part of the path name. This solution is a hack-fix to that problem by skipping any trailing quote from the path name. It works as long as we don't need any additional arguments to make_buildinfo.exe. This will help all those sould that are going to run this project through the visual studio autoconverter and get the same error.
* Actually finish the tests for r87182Nick Coghlan2010-12-131-3/+5
|
* Logging documentation - further update.Vinay Sajip2010-12-121-2/+2
|
* Logging documentation - further update.Vinay Sajip2010-12-121-4/+24
|
* Logging documentation - further update.Vinay Sajip2010-12-121-3/+4
|
* Improve readability of the socket docsAntoine Pitrou2010-12-121-57/+82
|
* Homogenize the "optional OS services" menuAntoine Pitrou2010-12-124-12/+12
|
* Consistent ordering of availability statementsAntoine Pitrou2010-12-121-2/+2
|
* Fix heading levelAntoine Pitrou2010-12-121-2/+2
|
* Remove redundant sentence, and fix markupAntoine Pitrou2010-12-121-7/+4
|
* #243654: only create a new MIME boundary if we don't already have one.R. David Murray2010-12-121-12/+6
| | | | | | The rearranged code should do exactly what the old code did, but the new code avoids a potentially costly re computation in the case where a boundary already exists.
* Add link to the buffer protocol description from the memory description.Antoine Pitrou2010-12-121-2/+2
|
* Better explain the buffer interface (hopefully)Antoine Pitrou2010-12-122-16/+26
|
* Make this a warning and fix indentationAntoine Pitrou2010-12-121-6/+6
|
* Obsolete aliases needn't be documentedAntoine Pitrou2010-12-121-4/+0
|
* Remove reference to stuff which is already obsolete in 2.x.Antoine Pitrou2010-12-121-82/+0
|
* SET_LINENO was removed in 2.3Antoine Pitrou2010-12-121-5/+0
|
* Logging documentation - further update.Vinay Sajip2010-12-121-51/+101
|
* Issue #10188 (partial resolution): tidy up some behaviour in the new ↵Nick Coghlan2010-12-124-14/+79
| | | | tempfile.TemporaryDirectory context manager
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+5
|
* Logging documentation - further update.Vinay Sajip2010-12-121-0/+8
|
* Logging documentation update.Vinay Sajip2010-12-121-144/+420
|
* having three copies of the same test is surely a bit excessiveBenjamin Peterson2010-12-121-296/+0
|
* remove (un)transform methodsBenjamin Peterson2010-12-129-274/+6
|
* Fix markup.Georg Brandl2010-12-111-2/+4
|