summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8844: Regular and recursive lock acquisitions can now be interruptedAntoine Pitrou2010-12-1510-72/+299
| | | | by signals on platforms using pthreads. Patch by Reid Kleckner.
* Mark up one missed None in pkgutil.rst (#8851)Éric Araujo2010-12-151-2/+2
|
* Entry for decimal and fractions.Raymond Hettinger2010-12-151-8/+37
|
* Add entries for structseq, ContextDecorator, and various C-API changes.Raymond Hettinger2010-12-151-7/+124
|
* Add disclaimer about MinGW compat in distutils docs (#6007). Patch by Chris ↵Éric Araujo2010-12-151-16/+23
| | | | Lambacher.
* Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).Éric Araujo2010-12-152-1/+3
|
* Fix wrong name in docstring and doc (#10693). Original patch by Eli Bendersky.Éric Araujo2010-12-153-4/+4
|
* Issue 10534, difflib: tweak doc; test new SequenceMatcher instance ↵Terry Reedy2010-12-153-9/+28
| | | | attributes; avoid unneeded lists of SM.b2j keys and items in .__chain_b. Do not backport.
* Use sentence case in section titles consistentlyAlexander Belopolsky2010-12-151-1/+1
|
* Elaborate on the calculation used in the random module.Raymond Hettinger2010-12-151-24/+26
|
* Use nested method directives, rewrap long lines, fix whitespace.Éric Araujo2010-12-151-50/+56
|
* Add intro to the changed modules section.Raymond Hettinger2010-12-151-0/+14
|
* Improve trace documentation (#9264). Patch by Eli Bendersky.Éric Araujo2010-12-151-50/+119
|
* Move the urllib-inherited API to a distinguished sectionAntoine Pitrou2010-12-151-156/+164
|
* Move email section in with other modules. Fix markup.Raymond Hettinger2010-12-151-57/+57
|
* Minor regroupings.Raymond Hettinger2010-12-151-20/+21
|
* Adopt Antoine's suggestion to improve readability with module subsections.Raymond Hettinger2010-12-151-168/+232
|
* Add entries for the random module and the collections module.Raymond Hettinger2010-12-151-6/+31
|
* Issue 10667: Fast path for collections.CounterRaymond Hettinger2010-12-153-4/+81
|
* I don't think we need to ship the comp.lang.python RFD these days.Antoine Pitrou2010-12-151-114/+0
|
* Encourage --with-pydebug rather than individual setting of debug options.Antoine Pitrou2010-12-151-1/+6
|
* Remove outdated compatibility file.Antoine Pitrou2010-12-151-85/+0
|
* Issue #10706: Remove outdated script runtests.sh. Either `make test`Antoine Pitrou2010-12-152-94/+6
| | | | or `python -m test` should be used instead.
* TIMEOUT value change in URLTimeout Test. test.support.transient_internet has aSenthil Kumaran2010-12-151-1/+1
| | | | | | socket timeout of 30 when it checks for resource. Explicit overrding (like setting the 10) wont exhibit consistent behavior when tests are outside context manager. So, settting it 30.
* Typo fixAndrew M. Kuchling2010-12-151-1/+1
|
* #10705: document what the values of debuglevel are and mean.R. David Murray2010-12-151-2/+4
|
* #4236: avoid possible Fatal Error when import is called from __del__R. David Murray2010-12-143-2/+22
| | | | Patch by Simon Cross, crasher test code by Martin von Löwis.
* 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
|