Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | 6 | -45/+40 |
| | |||||
* | Issue #13748: Raw bytes literals can now be written with the `rb` prefix as ↵ | Antoine Pitrou | 2012-01-12 | 2 | -4/+25 |
| | | | | well as `br`. | ||||
* | test_strlit was never run | Antoine Pitrou | 2012-01-12 | 1 | -3/+5 |
|\ | |||||
| * | test_strlit was never run | Antoine Pitrou | 2012-01-12 | 1 | -3/+5 |
| | | |||||
* | | use full unicode mappings for upper/lower/title case (#12736) | Benjamin Peterson | 2012-01-11 | 3 | -2/+46 |
| | | | | | | | | Also broaden the category of characters that count as lowercase/uppercase. | ||||
* | | Remove unused certificate from the test directory. | Antoine Pitrou | 2012-01-10 | 1 | -31/+0 |
|\ \ | |/ | |||||
| * | Remove unused certificate from the test directory. | Antoine Pitrou | 2012-01-10 | 1 | -31/+0 |
| | | |||||
* | | Issue #13757: Change os.fdlistdir() so that it duplicates the passed file | Charles-François Natali | 2012-01-10 | 1 | -8/+2 |
| | | | | | | | | descriptor (instead of closing it). | ||||
* | | Merge with 3.2 | Terry Jan Reedy | 2012-01-09 | 1 | -4/+6 |
|\ \ | |/ | |||||
| * | #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 #12760: Add a create mode to open(). Patch by David Townshend. | Charles-François Natali | 2012-01-09 | 2 | -15/+32 |
| | | |||||
* | | Fix nasty typo | Raymond Hettinger | 2012-01-09 | 1 | -1/+1 |
| | | |||||
* | | provide a common method to check for RETR_DATA validity, first checking the ↵ | Giampaolo Rodola' | 2012-01-09 | 1 | -8/+10 |
| | | | | | | | | expected len and then the actual data content; this way we get a failure on len mismatch rather than content mismatch (which is very long and unreadable) | ||||
* | | Make the docstring style consistent. | Raymond Hettinger | 2012-01-09 | 1 | -24/+23 |
| | | |||||
* | | Improve clarity with keyword argument for block. Move nowait methods together. | Raymond Hettinger | 2012-01-09 | 1 | -9/+9 |
| | | |||||
* | | Minor code clean-ups and beautifications. | Raymond Hettinger | 2012-01-09 | 1 | -17/+17 |
| | | |||||
* | | Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() | Charles-François Natali | 2012-01-08 | 1 | -2/+10 |
| | | | | | | | | can be called again on the same open file). | ||||
* | | Merge with 3.2 for #12364. | Ross Lagerwall | 2012-01-08 | 2 | -3/+6 |
|\ \ | |/ | |||||
| * | Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. | Ross Lagerwall | 2012-01-08 | 2 | -6/+7 |
| | | |||||
* | | Simplify the code using with-statements. | Raymond Hettinger | 2012-01-07 | 1 | -28/+14 |
| | | |||||
* | | Closes #13732: now use os.linesep instead of a literal newline. | Vinay Sajip | 2012-01-07 | 1 | -3/+4 |
| | | |||||
* | | Issue #13502: threading: Fix a race condition in Event.wait() that made it | Charles-François Natali | 2012-01-07 | 2 | -3/+20 |
|\ \ | |/ | | | | | return False when the event was set and cleared right after. | ||||
| * | Issue #13502: threading: Fix a race condition in Event.wait() that made it | Charles-François Natali | 2012-01-07 | 2 | -3/+20 |
| | | | | | | | | return False when the event was set and cleared right after. | ||||
* | | Issue #9993: When the source and destination are on different filesystems, | Antoine Pitrou | 2012-01-06 | 2 | -2/+52 |
| | | | | | | | | | | | | and the source is a symlink, shutil.move() now recreates a symlink on the destination instead of copying the file contents. Patch by Jonathan Niehof and Hynek Schlawack. | ||||
* | | Merge from 3.2: Issue #12926: Fix a bug in tarfile's link extraction. | Lars Gustäbel | 2012-01-05 | 1 | -6/+0 |
|\ \ | |/ | | | | | | | | | | | | | 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. | ||||
| * | Issue #12926: Fix a bug in tarfile's link extraction. | Lars Gustäbel | 2012-01-05 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | | 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 #13713: fix a regression in HTTP chunked reading after 806cfe39f729 | Antoine Pitrou | 2012-01-04 | 2 | -17/+51 |
| | | | | | | | | (originally issue #13464: Add a readinto() method to http.client.HTTPResponse) | ||||
* | | convince regrtest.py we aren't modifying _CONFIG_VARS | Benjamin Peterson | 2012-01-04 | 1 | -2/+3 |
| | | |||||
* | | Closes #13699. Skipped two tests if Python is optimised. | Vinay Sajip | 2012-01-04 | 1 | -0/+4 |
| | | |||||
* | | Refactored logging rotating handlers for improved flexibility. | Vinay Sajip | 2012-01-04 | 2 | -17/+106 |
| | | |||||
* | | merge from 3.2 | Senthil Kumaran | 2012-01-04 | 2 | -2/+15 |
|\ \ | |/ | |||||
| * | Issue13696 - Fix 302 Redirection for Relative urls. | Senthil Kumaran | 2012-01-04 | 2 | -2/+15 |
| | | |||||
* | | merge 3.2 | Benjamin Peterson | 2012-01-03 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | 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 |
| | | | |||||
* | | | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 2 | -3/+32 |
|\ \ \ | |/ / | | | | | | | (except when SSLv2 is explicitly asked for). | ||||
| * | | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 2 | -3/+31 |
| | | | | | | | | | | | | (except when SSLv2 is explicitly asked for). | ||||
* | | | use io.SEEK_* constants instead of os.SEEK_* where an IO stream is seeked, ↵ | Eli Bendersky | 2012-01-03 | 2 | -6/+8 |
| | | | | | | | | | | | | leaving the os.SEEK_* constants only for os.lseek, as documented | ||||
* | | | Mock the rename failure a bit better | Antoine Pitrou | 2012-01-02 | 1 | -1/+2 |
| | | | |||||
* | | | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 1 | -0/+7 |
|\ \ \ | |/ / | | | | | | | Vilmos Nebehaj. | ||||
| * | | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 1 | -0/+7 |
| | | | | | | | | | | | | Vilmos Nebehaj. | ||||
* | | | merge with 3.2 | Sandro Tosi | 2012-01-01 | 2 | -17/+41 |
|\ \ \ | |/ / | |||||
| * | | Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk | Sandro Tosi | 2012-01-01 | 2 | -17/+41 |
| | | | |||||
* | | | Issue #13640: add application/vnd.apple.mpegurl MIME type; (partial) patch ↵ | Sandro Tosi | 2012-01-01 | 1 | -0/+2 |
| | | | | | | | | | | | | by Hiroaki Kawai | ||||
* | | | merge with 3.2 | Sandro Tosi | 2012-01-01 | 2 | -10/+13 |
|\ \ \ | |/ / | |||||
| * | | Issue #13680: add lowecase compression type to write header; patch by Oleg ↵ | Sandro Tosi | 2012-01-01 | 2 | -10/+13 |
| | | | | | | | | | | | | Plakhotnyuk | ||||
* | | | Fix no-op tests in importlib. | Antoine Pitrou | 2011-12-30 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Fix no-op tests in importlib. | Antoine Pitrou | 2011-12-30 | 1 | -0/+4 |
| | | | |||||
* | | | Issue #12715: Add an optional symlinks argument to shutil functions ↵ | Antoine Pitrou | 2011-12-29 | 2 | -26/+294 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (copyfile, copymode, copystat, copy, copy2). When that parameter is true, symlinks aren't dereferenced and the operation instead acts on the symlink itself (or creates one, if relevant). Patch by Hynek Schlawack. |