Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use shorter version of Connection.isolation_level in sqlite3.rst | Berker Peksag | 2016-09-07 | 1 | -1/+1 |
| | |||||
* | Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ↵ | Christian Heimes | 2016-09-06 | 1 | -0/+6 |
| | | | | ChaCha20 Poly1305. | ||||
* | Update pkgutil docs to reference appropriate finder and loader object ↵ | Senthil Kumaran | 2016-09-06 | 1 | -14/+14 |
| | | | | | | documentation. Initial patch contributed by Jaysinh shukla. | ||||
* | Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. | Christian Heimes | 2016-09-05 | 1 | -21/+81 |
| | |||||
* | remove ungrammarical apostrophe (closes #27957) | Benjamin Peterson | 2016-09-05 | 1 | -1/+1 |
| | |||||
* | Improve recipe by showing results of intermediate steps | Raymond Hettinger | 2016-09-05 | 1 | -0/+6 |
| | |||||
* | Issue 27936: Update doc for round() to indicate that None is an allowable ↵ | Raymond Hettinger | 2016-09-04 | 1 | -2/+2 |
| | | | | argument. | ||||
* | Improve docs for random.seed() | Raymond Hettinger | 2016-09-04 | 1 | -2/+5 |
| | |||||
* | #27893: arg name and bytes references in email.parser docs. | R David Murray | 2016-08-31 | 1 | -6/+6 |
| | | | | | | | Perhaps the BytesParser 'text' argument should really be bytes, but it hasn't been, it has been text, so for backward compatibility and for consistency with the regular Parser class, I'm keeping it as 'text'. | ||||
* | ? Working Directory ? | Terry Jan Reedy | 2016-08-30 | 1 | -1/+1 |
| | |||||
* | Fix typos | Raymond Hettinger | 2016-08-30 | 1 | -2/+2 |
| | |||||
* | Fix typo | Zachary Ware | 2016-08-30 | 1 | -1/+1 |
| | |||||
* | Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factory | Serhiy Storchaka | 2016-08-29 | 1 | -4/+4 |
| | | | | creates not a cursor. Patch by Xiang Zhang. | ||||
* | Issue 19504: Change "customise" to "customize" American spelling. | Raymond Hettinger | 2016-08-26 | 2 | -4/+4 |
| | |||||
* | Issue #23746: Clarified is_python_build() documentation. | Vinay Sajip | 2016-08-25 | 1 | -1/+3 |
| | |||||
* | Issue #25564: Mention exec and __builtins__ in IDLE-console difference section. | Terry Jan Reedy | 2016-08-25 | 1 | -2/+4 |
| | |||||
* | Fix misspelling | Terry Jan Reedy | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Fix typo in Cursor.execute(). | Berker Peksag | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Issue #6057: Document exceptions in sqlite3 module | Berker Peksag | 2016-08-24 | 1 | -2/+32 |
| | | | | Patch by Jaysinh Shukla and Stéphane Wirtel. | ||||
* | #25916: fix a few 'string of bytes' references. | R David Murray | 2016-08-24 | 4 | -4/+4 |
| | | | | Patch by SilengGhost. | ||||
* | Issue #27782: Fix m_methods handling in multiphase init | Nick Coghlan | 2016-08-21 | 1 | -1/+1 |
| | | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang. | ||||
* | Minor spelling fixes | Martin Panter | 2016-08-20 | 4 | -4/+4 |
| | |||||
* | Issue #12982: Thanks to PEP 488, Python no longer creates .pyo files | Berker Peksag | 2016-08-20 | 1 | -3/+1 |
| | |||||
* | Issue #12946: Document that PyModule_GetDict can fail in some cases | Berker Peksag | 2016-08-19 | 1 | -4/+7 |
| | |||||
* | Use sys.version_info, not sys.version. | Zachary Ware | 2016-08-17 | 1 | -2/+2 |
| | | | | | sys.version[0] gives a string, which fails > comparison with 2. Reported by Arne Maximilian Richter on docs@ | ||||
* | Remove duplicate of the entry in the seealso section | Raymond Hettinger | 2016-08-16 | 1 | -5/+0 |
| | |||||
* | Add docs for typing.AnyStr and typing.Text. By Michael Lee. | Guido van Rossum | 2016-08-15 | 1 | -0/+27 |
| | |||||
* | #27753: fix typo (name->named). | R David Murray | 2016-08-13 | 1 | -1/+1 |
| | |||||
* | Issue #27720: Fix error in eng_to_decimal docs and add examples from the ↵ | Raymond Hettinger | 2016-08-13 | 1 | -5/+11 |
| | | | | | | specification. (Based on a first draft patch from Evelyn Mitchell.) | ||||
* | Issue #24637: Document that locals can be any mapping object | Berker Peksag | 2016-08-13 | 1 | -8/+9 |
| | | | | | | | This behavior is already tested in test_general_eval in Lib/test/test_builtin.py Patch by Matthew Keeter. | ||||
* | Issue #27712: Fix some typos in the import docs. | Brett Cannon | 2016-08-12 | 1 | -2/+2 |
| | | | | Thanks to Xiang Zhang for the patch. | ||||
* | Issue 27719: Remove a doc example that is not applicable in Python 3 | Raymond Hettinger | 2016-08-12 | 1 | -23/+1 |
| | |||||
* | Issue #27745: Fix some typos in Argument Clinic howto, by Lele Gaifax | Martin Panter | 2016-08-12 | 1 | -4/+4 |
| | |||||
* | Correct misspellings of ISO-8859 | Martin Panter | 2016-08-10 | 1 | -2/+2 |
| | |||||
* | Issue #27200: Fix doctests in Doc/library/hashlib.rst | Zachary Ware | 2016-08-10 | 1 | -0/+5 |
| | |||||
* | Issue #27210: Fix doctests for a few modules. | Zachary Ware | 2016-08-10 | 3 | -11/+9 |
| | | | | Initial patch by Jelle Zijlstra. | ||||
* | Issue #27209: Fix doctests in Doc/library/email*.rst | Zachary Ware | 2016-08-10 | 3 | -30/+29 |
| | | | | Patch by Jelle Zijlstra. | ||||
* | Issue #27208: Fix doctest in Doc/library/traceback.rst | Zachary Ware | 2016-08-10 | 1 | -4/+4 |
| | | | | Patch by Jelle Zijlstra. | ||||
* | Issue #27207: Fix doctests in Doc/whatsnew/3.2.rst | Zachary Ware | 2016-08-10 | 1 | -18/+31 |
| | | | | Initial patch by Jelle Zijlstra. | ||||
* | Issue #27206: Fix doctests in Doc/tutorial. | Zachary Ware | 2016-08-09 | 1 | -0/+4 |
| | | | | Patch by Jelle Zijlstra. | ||||
* | Issue #27205: Fix doctests in Doc/library/collections.rst. | Zachary Ware | 2016-08-09 | 1 | -15/+15 |
| | | | | Initial patch by Jelle Zijlstra. | ||||
* | Issue #27722: Fix default for touch method's 'mode' argument | Zachary Ware | 2016-08-09 | 1 | -1/+1 |
| | |||||
* | Issue #27204: Fix doctests in Doc/howto | Zachary Ware | 2016-08-09 | 3 | -24/+29 |
| | | | | Patch by Jelle Zijlstra. | ||||
* | Correct signatures for a couple of logging handlers | Zachary Ware | 2016-08-09 | 1 | -2/+2 |
| | | | | Reported by Oleg Gromyak on docs@ | ||||
* | Issue #27700: Document AbstractEventLoop, not BaseEventLoop. | Guido van Rossum | 2016-08-08 | 7 | -129/+138 |
| | |||||
* | Fix use of default reST role | Berker Peksag | 2016-08-08 | 1 | -3/+3 |
| | |||||
* | Issue #23322: Remove outdated reference to an example in parser docs | Berker Peksag | 2016-08-08 | 1 | -7/+0 |
| | | | | Initial patch by Sahil Chelaramani. | ||||
* | Use asyncio.gather instead of asyncio.wait in example. | Andrew Svetlov | 2016-08-08 | 1 | -1/+1 |
| | | | | | gather will raise exception in case of problem but wait just returns done and pending lists of futures. For getting error every future result should be retrieved, which is boring and error prone. | ||||
* | Better docs for typing.Any by Michael Lee. Fixes issue #27688. | Guido van Rossum | 2016-08-06 | 1 | -9/+71 |
| | |||||
* | Issue #18548: Fix unittest.TestSuite() example | Berker Peksag | 2016-08-06 | 1 | -2/+2 |
| | | | | Initial patch by py.user. |