Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge | Raymond Hettinger | 2014-12-12 | 1 | -2/+2 |
|\ | |||||
| * | Issue 23005: Fix typos | Raymond Hettinger | 2014-12-12 | 1 | -2/+2 |
| | | |||||
| * | Issue #22823: Fixed an output of sets in examples. | Serhiy Storchaka | 2014-12-11 | 1 | -12/+12 |
| | | |||||
* | | Issue #22823: Use set literals instead of creating a set from a list. | Serhiy Storchaka | 2014-12-11 | 1 | -12/+12 |
| | | | | | | | | Fixed an output of sets in examples. | ||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-12-10 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | whitespace | Terry Jan Reedy | 2014-12-10 | 1 | -1/+1 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-12-10 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #23006 whitespace | Terry Jan Reedy | 2014-12-10 | 1 | -2/+2 |
| | | |||||
* | | Merge 3.4 | Terry Jan Reedy | 2014-12-10 | 1 | -5/+8 |
|\ \ | |/ | |||||
| * | Issue #23006: Improve the documentation and indexing of dict.__missing__. | Terry Jan Reedy | 2014-12-10 | 1 | -5/+8 |
| | | | | | | | | | | Add an entry in the language datamodel special methods section. Revise and index its discussion in the stdtypes mapping/dict section. | ||||
* | | Issue #12602: Add missing cross-references to runpy and using/cmdline docs. | Berker Peksag | 2014-12-09 | 1 | -3/+10 |
|\ \ | |/ | | | | | Patch by Éric Araujo. | ||||
| * | Issue #12602: Add missing cross-references to runpy and using/cmdline docs. | Berker Peksag | 2014-12-09 | 1 | -3/+10 |
| | | | | | | | | Patch by Éric Araujo. | ||||
* | | merge 3.4 | Benjamin Peterson | 2014-12-07 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix reference by adding module name | Benjamin Peterson | 2014-12-07 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 (#22959) | Benjamin Peterson | 2014-12-07 | 1 | -8/+3 |
|\ \ | |/ | |||||
| * | HTTPSConnection: prefer the context's check_hostname attribute over the ↵ | Benjamin Peterson | 2014-12-07 | 1 | -8/+3 |
| | | | | | | | | constructor parameter (#22959) | ||||
* | | Issue #22696: Add function :func:`sys.is_finalizing` to know about ↵ | Antoine Pitrou | 2014-12-07 | 3 | -6/+14 |
| | | | | | | | | interpreter shutdown. | ||||
* | | merge 3.4 | Benjamin Peterson | 2014-12-06 | 1 | -2/+5 |
|\ \ | |/ | |||||
| * | note that sslv3 may not be available | Benjamin Peterson | 2014-12-06 | 1 | -2/+5 |
| | | |||||
* | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 2 | -3/+4 |
|\ \ | |/ | |||||
| * | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 2 | -3/+4 |
| | | |||||
* | | Merge with 3.4. Edit Menus section of Idle doc. | Terry Jan Reedy | 2014-12-05 | 1 | -123/+138 |
|\ \ | |/ | |||||
| * | Edit Menus section of Idle doc. Make menu entries match current Idle in order | Terry Jan Reedy | 2014-12-05 | 1 | -123/+138 |
| | | | | | | | | and case. Edit some of the explanatory sentences and end all with a period. | ||||
| * | docs.inspect: Fix BoundArguments example. Issue #22998. | Yury Selivanov | 2014-12-05 | 1 | -1/+2 |
| | | |||||
* | | docs.inspect: Fix BoundArguments example. Issue #22998. | Yury Selivanov | 2014-12-05 | 1 | -1/+2 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-12-04 | 1 | -11/+19 |
|\ \ | |/ | |||||
| * | Issue #3068: Document the new Configure Extensions dialog and menu entry. | Terry Jan Reedy | 2014-12-04 | 1 | -11/+19 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-12-04 | 1 | -20/+38 |
|\ \ | |/ | |||||
| * | Issue #16893: For Idle doc, move index entries, copy no-subprocess section | Terry Jan Reedy | 2014-12-04 | 1 | -20/+38 |
| | | | | | | | | | | from idlelib/help.txt, add 'C' comment, and remove obsolete ^Z comment Original patch by Zach Ware. | ||||
* | | Fix #22987: update the compatibility matrix for a SSLv23 client. | Antoine Pitrou | 2014-12-03 | 1 | -4/+3 |
|\ \ | |/ | |||||
| * | Fix #22987: update the compatibility matrix for a SSLv23 client. | Antoine Pitrou | 2014-12-03 | 1 | -4/+3 |
| | | |||||
* | | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -8/+2 |
|\ \ | |/ | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
| * | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -8/+2 |
| | | | | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
* | | Merge 3.4 (asyncio doc) | Victor Stinner | 2014-12-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #22475: asyncio doc, fix Task.get_stack() doc | Victor Stinner | 2014-12-02 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.4 (asyncio doc) | Victor Stinner | 2014-12-02 | 1 | -8/+3 |
|\ \ | |/ | |||||
| * | Close #22473: asyncio doc: rephrase Future with run_forever() example | Victor Stinner | 2014-12-02 | 1 | -8/+3 |
| | | |||||
* | | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
| | | |||||
* | | Issue #21032: Deprecated the use of re.LOCALE flag with str patterns or | Serhiy Storchaka | 2014-12-01 | 1 | -1/+5 |
| | | | | | | | | re.ASCII. It was newer worked. | ||||
* | | merge 3.4 | Benjamin Peterson | 2014-11-30 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | context is keyword-only | Benjamin Peterson | 2014-11-30 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 (#22960) | Benjamin Peterson | 2014-11-30 | 1 | -3/+8 |
|\ \ | |/ | |||||
| * | add context parameter to xmlrpclib.ServerProxy (#22960) | Benjamin Peterson | 2014-11-30 | 1 | -2/+7 |
| | | | | | | | | Patch by Alex Gaynor. | ||||
* | | Issue #22389: Add contextlib.redirect_stderr(). | Berker Peksag | 2014-11-28 | 1 | -0/+10 |
| | | |||||
* | | (Merge 3.4) Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation | Victor Stinner | 2014-11-28 | 1 | -4/+10 |
|\ \ | |/ | | | | | Patch written by Martin Richard. | ||||
| * | Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation | Victor Stinner | 2014-11-28 | 1 | -4/+10 |
| | | | | | | | | Patch written by Martin Richard. | ||||
* | | (Merge 3.4) asyncio doc: reformat event loop policy doc | Victor Stinner | 2014-11-28 | 1 | -8/+18 |
|\ \ | |/ | |||||
| * | asyncio doc: reformat event loop policy doc | Victor Stinner | 2014-11-28 | 1 | -8/+18 |
| | | |||||
* | | (Merge 3.4) asyncio doc: explain how to pass keywords to callbacks | Victor Stinner | 2014-11-28 | 2 | -0/+38 |
|\ \ | |/ | | | | | (functools.partial) |