Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Hide or remove user-visible XXX notes from distutils doc (#13716). | Éric Araujo | 2012-01-15 | 1 | -25/+11 |
| | | | | | | | Requested by Florent Xicluna with the rationale that they make the docs look unfinished. I’ve also removed a few XXX notes that were not visible in the HTML but could waste contributors’ time by suggesting improvements that are never going to happen for distutils. | ||||
* | Consolidate the occurrances of the prime used as the multiplier when hashing | Gregory P. Smith | 2012-01-14 | 4 | -4/+7 |
| | | | | | | | to a single #define instead of having several copies in several files. This excludes the Modules/ tree (datetime and expat both have a copy for their own purposes with no need for it to be the same). | ||||
* | remove 'Documenting Python' and its references, it's now on devguide | Sandro Tosi | 2012-01-14 | 10 | -1729/+1 |
| | |||||
* | Mention the additional way to use the lvl parameter and when it changed. | Gregory P. Smith | 2012-01-14 | 1 | -0/+10 |
| | |||||
* | Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. | Meador Inge | 2012-01-14 | 2 | -1/+3 |
| | |||||
* | Issue #13725: Add a NEWS entry. | Meador Inge | 2012-01-14 | 1 | -0/+3 |
| | |||||
* | Issue #13725: regrtest does not recognize -d flag. | Meador Inge | 2012-01-14 | 2 | -1/+2 |
| | | | | Patch by Erno Tukia. | ||||
* | Fix issue13726: -S accepts an argument just as --start. | Senthil Kumaran | 2012-01-14 | 1 | -1/+1 |
| | |||||
* | Fix Issue #13642: Unquote before b64encoding user:password during Basic ↵ | Senthil Kumaran | 2012-01-14 | 3 | -5/+36 |
| | | | | Authentication. | ||||
* | Adding the -o option for Issue13726 | Senthil Kumaran | 2012-01-14 | 1 | -1/+1 |
| | |||||
* | Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for ↵ | Senthil Kumaran | 2012-01-14 | 2 | -2/+5 |
| | | | | printing the 10 slowest test. | ||||
* | #13730 grammar fix | Terry Jan Reedy | 2012-01-14 | 1 | -1/+1 |
| | |||||
* | Issue #13764: remove outdated script Misc/build.sh | Antoine Pitrou | 2012-01-13 | 1 | -281/+0 |
| | |||||
* | test_strlit was never run | Antoine Pitrou | 2012-01-12 | 1 | -3/+5 |
| | |||||
* | #11633 At least 2 people prefer earlier revision. | Terry Jan Reedy | 2012-01-12 | 1 | -2/+2 |
| | |||||
* | Issue #13724: improve documentation for socket.create_connection. | Antoine Pitrou | 2012-01-12 | 1 | -4/+11 |
| | |||||
* | fold into one if statement | Benjamin Peterson | 2012-01-12 | 1 | -3/+1 |
| | |||||
* | Minor correction. #11418 | Terry Jan Reedy | 2012-01-11 | 1 | -2/+2 |
| | |||||
* | Closes #11633 Clarify print buffering. | Terry Jan Reedy | 2012-01-11 | 1 | -1/+3 |
| | |||||
* | #13754 String returned if less than *or equal to* x 3 | Terry Jan Reedy | 2012-01-11 | 1 | -4/+4 |
| | | | | Close *13753 'seq' now 'iterable' | ||||
* | Remove unused certificate from the test directory. | Antoine Pitrou | 2012-01-10 | 1 | -31/+0 |
| | |||||
* | Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ ↵ | Senthil Kumaran | 2012-01-10 | 1 | -4/+4 |
| | | | | variable case does not matter. | ||||
* | #11906 Make test_argparse work interactively by removing extra space | Terry Jan Reedy | 2012-01-09 | 1 | -4/+6 |
| | | | | in comparison string that argparse does not add when program name is blank. | ||||
* | Issue #13747: fix SSL compatibility table. | Antoine Pitrou | 2012-01-09 | 1 | -1/+1 |
| | |||||
* | Issue #13747: fix documentation error about the default SSL version. | Antoine Pitrou | 2012-01-09 | 1 | -3/+2 |
| | |||||
* | Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. | Ross Lagerwall | 2012-01-08 | 3 | -6/+11 |
| | |||||
* | Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody ↵ | Sandro Tosi | 2012-01-07 | 1 | -1/+1 |
| | | | | Smith from docs@ | ||||
* | Issue #13502: threading: Fix a race condition in Event.wait() that made it | Charles-François Natali | 2012-01-07 | 4 | -5/+27 |
| | | | | return False when the event was set and cleared right after. | ||||
* | clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@ | Sandro Tosi | 2012-01-07 | 1 | -3/+6 |
| | |||||
* | Update printout of SSL certificate examples for 3.2+. | Antoine Pitrou | 2012-01-06 | 1 | -5/+40 |
| | |||||
* | Issue #12042: a queue is only used to retrive results; preliminary patch by ↵ | Sandro Tosi | 2012-01-05 | 1 | -2/+2 |
| | | | | Jordan Stadler | ||||
* | Issue #11984: remove reference to parser, it's not showing symbol usage anymore | Sandro Tosi | 2012-01-05 | 1 | -8/+0 |
| | |||||
* | Issue #12926: Fix a bug in tarfile's link extraction. | Lars Gustäbel | 2012-01-05 | 2 | -6/+2 |
| | | | | | | | | On platforms that do not support (symbolic) links, tarfile offers a work-around and extracts a link in an archive as the regular file the link is pointing to. On other platforms, this code was accidentally executed even after the link had been successfully extracted which failed due to the already existing link. | ||||
* | Closes #13699. Skipped two tests if Python is optimised. | Vinay Sajip | 2012-01-05 | 1 | -0/+4 |
| | |||||
* | Issue #10772: add count and help argparse action; patch by Marc Sibson | Sandro Tosi | 2012-01-04 | 1 | -0/+13 |
| | |||||
* | Issue13696 - Fix 302 Redirection for Relative urls. | Senthil Kumaran | 2012-01-04 | 3 | -2/+17 |
| | |||||
* | Add a subsection explaning cipher selection. | Antoine Pitrou | 2012-01-04 | 1 | -0/+19 |
| | |||||
* | fix formatting | Benjamin Peterson | 2012-01-03 | 1 | -1/+1 |
| | |||||
* | exception support is correct now (closes #13705) | Benjamin Peterson | 2012-01-03 | 1 | -2/+3 |
| | |||||
* | merge 3.1 | Benjamin Peterson | 2012-01-03 | 1 | -4/+4 |
|\ | |||||
| * | fix this to not depend on dictionary order | Benjamin Peterson | 2012-01-03 | 1 | -4/+4 |
| | | |||||
* | | Merge | Antoine Pitrou | 2012-01-03 | 1 | -3/+4 |
|\ \ | |||||
| * | | Issue #6031: improve serve_forever() description | Sandro Tosi | 2012-01-03 | 1 | -3/+4 |
| | | | |||||
* | | | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 3 | -3/+34 |
|/ / | | | | | | | (except when SSLv2 is explicitly asked for). | ||||
* | | Issue #9349: add argparse.SUPPRESS to help doc | Sandro Tosi | 2012-01-03 | 1 | -0/+11 |
| | | |||||
* | | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 4 | -8/+32 |
| | | | | | | | | Vilmos Nebehaj. | ||||
* | | Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk | Sandro Tosi | 2012-01-01 | 2 | -17/+41 |
| | | |||||
* | | Issue #13680: add lowecase compression type to write header; patch by Oleg ↵ | Sandro Tosi | 2012-01-01 | 2 | -10/+13 |
| | | | | | | | | Plakhotnyuk | ||||
* | | Issue #13690: add re.DEBUG; patch by Filip Gruszczyński | Sandro Tosi | 2012-01-01 | 1 | -0/+5 |
| | | |||||
* | | Issue #13683: raise with no exception in scope throws a RuntimeError; fix by ↵ | Sandro Tosi | 2012-01-01 | 1 | -2/+2 |
| | | | | | | | | Ramchandra Apte |