Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Add typing.Generator docs, by Michael Lee. | Guido van Rossum | 2016-08-05 | 1 | -0/+29 |
| | |||||
* | Fix spelling and grammar in documentation and code comments | Martin Panter | 2016-08-04 | 1 | -1/+1 |
| | |||||
* | Fix half-finished sentence. | Zachary Ware | 2016-08-04 | 1 | -1/+1 |
| | | | | Reported by Linda Pescatore on docs@. | ||||
* | Fix indentation of versionadded directive in IPv4Address.reverse_pointer docs | Berker Peksag | 2016-08-04 | 1 | -1/+1 |
| | |||||
* | Indent ipaddress.ip_address() example correctly | Berker Peksag | 2016-08-04 | 1 | -7/+4 |
| | |||||
* | Issue #24278: Explain how argument parsing output buffers are managed | Martin Panter | 2016-08-03 | 1 | -14/+19 |
| | |||||
* | Issue #23710: Update PyObject_HEAD documentation | Berker Peksag | 2016-08-03 | 1 | -5/+9 |
| | | | | | | | Since PEP 3123, PyObject_HEAD only has one field named ob_base. Users now need to use the Py_TYPE macro instead of self->ob_type. Initial patch by Ammar Askar. | ||||
* | Issue #26576: Clarify that the @deco syntax is not always an equivalent of f ↵ | Berker Peksag | 2016-08-03 | 1 | -4/+5 |
| | | | | | | = deco(f) Patch by Chris Angelico. | ||||
* | [merge from 3.4] - Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 2 | -0/+20 |
|\ | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
| * | [merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 2 | -0/+18 |
| |\ | | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
| | * | Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 2 | -0/+18 |
| | | | | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
* | | | Silence another "default role used" warning in typing.rst | Berker Peksag | 2016-07-30 | 1 | -1/+1 |
| | | | | | | | | | | | | This should make ware-docs green again. | ||||
* | | | Fix whitespace. | Guido van Rossum | 2016-07-29 | 1 | -1/+1 |
| | | | |||||
* | | | Expand documentation about type aliases and NewType in the typing module. | Guido van Rossum | 2016-07-29 | 1 | -1/+96 |
| | | | | | | | | | | | | By Michael Lee. | ||||
* | | | Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting. | Martin Panter | 2016-07-26 | 47 | -128/+329 |
| | | | | | | | | | | | | Patch by Julien Palard. | ||||
* | | | Correct typo in Windows docs. | Zachary Ware | 2016-07-29 | 1 | -1/+1 |
| | | | | | | | | | | | | Found by Jack Copper on docs@ | ||||
* | | | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 6 | -6/+6 |
| | | | | | | | | | | | | Based on patch by Ville Skyttä. | ||||
* | | | Issue #27633: Fix usage of versionchanged directive in email.parser.rst | Berker Peksag | 2016-07-27 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch by Florian Preinstorfer. | ||||
* | | | Issue #26638: Don’t link 2to3 -l option to the tarfile -l option | Martin Panter | 2016-07-26 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #27601: Improve example in the "Hashing of numeric types" section | Berker Peksag | 2016-07-25 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | | | | | * Fix return value of hash_compute() implementation * Rename variable names to hash_value to improve readability Patch by Emanuel Barry. | ||||
* | | | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module | Martin Panter | 2016-07-23 | 1 | -6/+6 |
| | | | | | | | | | | | | Patch by Xiang Zhang. | ||||
* | | | Issue #25393: Fix probable copy/paste error in resource docs | Zachary Ware | 2016-07-19 | 1 | -3/+3 |
| | | | | | | | | | | | | Patch by Alakshendra Yadav. | ||||
* | | | Issue #27528: Document and test warning messages must match at beginning | Martin Panter | 2016-07-19 | 1 | -3/+4 |
| | | | |||||
* | | | Issue #27531: Update signature of Mock.assert_not_called method | Berker Peksag | 2016-07-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Since 01ae1ac2daf4, it doesn't accept any arguments. Patch by Michael Killough. | ||||
* | | | Issue #26696: Document collections.abc.ByteString. | Brett Cannon | 2016-07-15 | 1 | -1/+4 |
| | | | | | | | | | | | | Thanks to Xiang Zhang for the patch. |