| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Elaborate on the calculation used in the random module. | Raymond Hettinger | 2010-12-15 | 1 | -24/+26 |
| | | |||||
| * | Use nested method directives, rewrap long lines, fix whitespace. | Éric Araujo | 2010-12-15 | 1 | -50/+56 |
| | | |||||
| * | Add intro to the changed modules section. | Raymond Hettinger | 2010-12-15 | 1 | -0/+14 |
| | | |||||
| * | Improve trace documentation (#9264). Patch by Eli Bendersky. | Éric Araujo | 2010-12-15 | 1 | -50/+119 |
| | | |||||
| * | Move the urllib-inherited API to a distinguished section | Antoine Pitrou | 2010-12-15 | 1 | -156/+164 |
| | | |||||
| * | Move email section in with other modules. Fix markup. | Raymond Hettinger | 2010-12-15 | 1 | -57/+57 |
| | | |||||
| * | Minor regroupings. | Raymond Hettinger | 2010-12-15 | 1 | -20/+21 |
| | | |||||
| * | Adopt Antoine's suggestion to improve readability with module subsections. | Raymond Hettinger | 2010-12-15 | 1 | -168/+232 |
| | | |||||
| * | Add entries for the random module and the collections module. | Raymond Hettinger | 2010-12-15 | 1 | -6/+31 |
| | | |||||
| * | Issue 10667: Fast path for collections.Counter | Raymond Hettinger | 2010-12-15 | 3 | -4/+81 |
| | | |||||
| * | I don't think we need to ship the comp.lang.python RFD these days. | Antoine Pitrou | 2010-12-15 | 1 | -114/+0 |
| | | |||||
| * | Encourage --with-pydebug rather than individual setting of debug options. | Antoine Pitrou | 2010-12-15 | 1 | -1/+6 |
| | | |||||
| * | Remove outdated compatibility file. | Antoine Pitrou | 2010-12-15 | 1 | -85/+0 |
| | | |||||
| * | Issue #10706: Remove outdated script runtests.sh. Either `make test` | Antoine Pitrou | 2010-12-15 | 2 | -94/+6 |
| | | | | | or `python -m test` should be used instead. | ||||
| * | TIMEOUT value change in URLTimeout Test. test.support.transient_internet has a | Senthil Kumaran | 2010-12-15 | 1 | -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 fix | Andrew M. Kuchling | 2010-12-15 | 1 | -1/+1 |
| | | |||||
| * | #10705: document what the values of debuglevel are and mean. | R. David Murray | 2010-12-15 | 1 | -2/+4 |
| | | |||||
| * | #4236: avoid possible Fatal Error when import is called from __del__ | R. David Murray | 2010-12-14 | 3 | -2/+22 |
| | | | | | Patch by Simon Cross, crasher test code by Martin von Löwis. | ||||
| * | More comprehensive compileall cli tests, and fixes. | R. David Murray | 2010-12-14 | 2 | -89/+176 |
| | | |||||
| * | Freshen README contents | Antoine Pitrou | 2010-12-14 | 1 | -5/+2 |
| | | |||||
| * | Nits | Raymond Hettinger | 2010-12-14 | 1 | -9/+10 |
| | | |||||
| * | Logging documentation update. | Vinay Sajip | 2010-12-14 | 1 | -154/+159 |
| | | |||||
| * | SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD) | Gregory P. Smith | 2010-12-14 | 1 | -1/+1 |
| | | |||||
| * | #775964: skip YP/NIS entries instead of failing the test | R. David Murray | 2010-12-14 | 5 | -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. Smith | 2010-12-14 | 1 | -1/+2 |
| | | |||||
| * | Issue #1731717: Fixed the problem where subprocess.wait() could cause an | Gregory P. Smith | 2010-12-14 | 4 | -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 traceback | R. David Murray | 2010-12-14 | 3 | -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. Smith | 2010-12-14 | 5 | -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 Murray | 2010-12-14 | 1 | -1/+1 |
| | | |||||
| * | 9162: fix license in multiprocessing files | R. David Murray | 2010-12-14 | 14 | -13/+352 |
| | | |||||
| * | Use skipIf instead of a return when attribute doesn't exist. | R. David Murray | 2010-12-14 | 1 | -2/+2 |
| | | |||||
| * | #10699: fix docstring for tzset: it does not take a parameter | R. David Murray | 2010-12-14 | 1 | -1/+1 |
| | | | | | Thanks to Garrett Cooper for the fix. | ||||
| * | #1078919: make add_header automatically do RFC2231 encoding when needed. | R. David Murray | 2010-12-13 | 4 | -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 Murray | 2010-12-13 | 1 | -1/+1 |
| | | |||||
| * | Logging documentation update. | Vinay Sajip | 2010-12-13 | 1 | -2/+5 |
| | | |||||
| * | Logging documentation update. | Vinay Sajip | 2010-12-13 | 1 | -110/+128 |
| | | |||||
| * | Issue 10687. When --without-pymalloc is given, $VERSION is the same as | Barry Warsaw | 2010-12-13 | 2 | -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 Coghlan | 2010-12-13 | 1 | -2/+8 |
| | | | | | combination... | ||||
| * | Logging documentatio update. | Vinay Sajip | 2010-12-13 | 1 | -1/+2 |
| | | |||||
| * | Mention the subprocess.Popen close_fds default change. Fixup *s to -s. | Gregory P. Smith | 2010-12-13 | 1 | -2/+6 |
| | | |||||
| * | regenerate configure based on r87207. | Gregory P. Smith | 2010-12-13 | 1 | -1/+7 |
| | | |||||
| * | issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from | Gregory P. Smith | 2010-12-13 | 10 | -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 per | Gregory P. Smith | 2010-12-13 | 3 | -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 10683 | Kristján Valur Jónsson | 2010-12-13 | 1 | -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 r87182 | Nick Coghlan | 2010-12-13 | 1 | -3/+5 |
| | | |||||
| * | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -2/+2 |
| | | |||||
| * | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -4/+24 |
| | | |||||
| * | Logging documentation - further update. | Vinay Sajip | 2010-12-12 | 1 | -3/+4 |
| | | |||||
| * | Improve readability of the socket docs | Antoine Pitrou | 2010-12-12 | 1 | -57/+82 |
| | | |||||
| * | Homogenize the "optional OS services" menu | Antoine Pitrou | 2010-12-12 | 4 | -12/+12 |
| | | |||||
