summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834)Gregory P. Smith2017-05-292-11/+20
| | | | Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity.
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-282-4/+13
| | | | | | * Doc nits for bpo-16500 * Fix more references
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-272-0/+64
| | | | | | | | | | | | * bpo-16500: Allow registering at-fork handlers * Address Serhiy's comments * Add doc for new C API * Add doc for new Python-facing function * Add NEWS entry + doc nit
* bpo-30470: Deprecate invalid ctypes call protection on Windows. (GH-1810)Mariatta2017-05-271-14/+6
| | | Calling Ctypes functions is deprecated in 3.6.2 and will be removed in 3.7
* bpo-30398: Add a docstring for re.error. (#1647)Serhiy Storchaka2017-05-271-3/+3
| | | Also document that some attributes may be None.
* Fix the signature of JSONDecodeError (no end parameter). (#1827)Serhiy Storchaka2017-05-271-1/+1
| | | Unlikely to the simplejson module, json.JSONDecodeError doesn't accept the end argument.
* bpo-22702: Clarify documentation of str.join & bytes.join (GH-156)Sanyam Khurana2017-05-271-9/+9
| | | | | | | The "iterable iterable" phrasing created confusion between the term reference and the parameter name. This simplifies the phrasing to just use the parameter name without linking directly to the term definition.
* bpo-30449 Terse slots (#1819)Aaron Hall, MBA2017-05-261-14/+15
| | | | | | | | * correct __slots__ documentation with minimal changes * add multiple inheritance info * remove mapping from description
* bpo-30420: List cwd parameter in subprocess convenience APIs (GH-1685)Alex Gaynor2017-05-261-4/+4
| | | | | | | | | | Partially clarify the subprocess convenience API documentation by explicitly listing the `cwd` parameter in their abbreviated signatures. While this has been merged as an improvement, it doesn't fully resolve the issue, as the `cwd` should also be covered in the "Frequently Used Arguments" section, and the fact these APIs pass unlisted keyword arguments down to the lower level APIs is currently still unclear.
* bpo-29851: Have importlib.reload() raise ImportError if the module's spec is ↵Garvit Khatri2017-05-241-0/+3
| | | | not found (GH-972)
* bpo-30160: Clarify intended usage of wfile (gh-1300)jugglinmike2017-05-241-1/+2
| | | | | | The library does not enforce compliance with the HTTP protocol, so violations are not technically disallowed. Extend the stream's description to avoid suggesting that intentional protocol violations are not supported.
* bpo-28707: Add the directory parameter to ↵Stéphane Wirtel2017-05-242-2/+18
| | | | | | | | http.server.SimpleHTTPRequestHandler and http.server module (#1776) * bpo-28707: call the constructor of SimpleHTTPRequestHandler in the test with a mock object * bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module
* Added effect of re.ASCII and reworded slightly (#1782)Brian Ward2017-05-241-3/+5
|
* bpo-21056: Document return type of next method of csv reader (#146)Amit Kumar2017-05-231-2/+4
|
* bpo-29102: Add a unique ID to PyInterpreterState. (#1639)Eric Snow2017-05-231-0/+8
|
* bpo-30376: Update outdated WindowObject references (#1630)Berker Peksag2017-05-231-8/+8
|
* bpo-30372: Clarify that '__builtins__' is a CPython Implementation detail ↵Naomi Ceder2017-05-221-9/+9
| | | | (GH-1725)
* Corrected grammar mistake in documentation (#1713)Ben Lloyd2017-05-221-2/+2
| | | There was an unneeded space before a closing parenthesis in the `unittest.mock` documentation.
* bpo-17188: DOC: Document 'from None' in raise statement (#1671)csabella2017-05-201-2/+20
| | | | | Original patch by Dennis Mårtensson.
* Fix typos in multiple `.rst` files (#1668)delirious-lettuce2017-05-1917-30/+30
|
* Remove trailing semicolon in datetime doc example (GH-1653)delirious-lettuce2017-05-191-1/+1
|
* bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613)Serhiy Storchaka2017-05-166-13/+12
| | | | | | | | * Use explicit numbering for footnotes referred by explicit number. * Restore missed footnote reference in stdtypes.rst. * Fix literal strings formatting in howto/urllib2.rst. * Update susp-ignored.csv for zipapp.rst. * Fix suspicious mark up in Misc/NEWS.
* Fix ModuleNotFoundError typo in import reference (#1606)Dominik Miedziński2017-05-161-1/+1
|
* bpo-29898: Fix incorrect env variable name (GH-1576)Berker Peksag2017-05-162-3/+3
| | | | It should read PYTHONLEGACYWINDOWSSTDIO as stated in section "Add legacy mode" in PEP 528.
* bpo-29651 - Cover edge case of square brackets in urllib docs (#1128)Howie Benefiel2017-05-161-0/+6
|
* bpo-29196: Removed old-deprecated classes Plist, Dict and _InternalDict (#488)Serhiy Storchaka2017-05-152-24/+14
| | | | | in the plistlib module. Dict values in the result of functions readPlist() and readPlistFromBytes() are now exact dicts.
* bpo-9850: Deprecate the macpath module (#1540)Victor Stinner2017-05-152-0/+4
| | | Co-Authored-By: Chi Hsuan Yen <yan12125@gmail.com>.
* bpo-30354: Update data model documentation for super() (GH-1561)csabella2017-05-151-6/+6
| | | | | | | | | | The data model section of the language reference was written well before the zero-argument form of super() was added. To avoid giving the impression that they're doing something unusual, this updates the description of `__new__` and `__init__` to use the zero-argument form. Patch by Cheryl Sabella.
* bpo-30358: Document sort argument of profile.runctx() (GH-1566)csabella2017-05-141-2/+2
|
* bpo-30178: Indent methods and attributes of MimeType class (GH-1306)Jim Fasarakis-Hilliard2017-05-131-43/+43
|
* bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506)Serhiy Storchaka2017-05-132-0/+8
| | | | rather than `format(str(self), '')`.
* Indented Handler sections for improved clarity. (#1554)Vinay Sajip2017-05-121-66/+67
| | | Indented parts of the Handler class documentation for improved presentation, analogous to a recent similar change for the Logger class.
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)Xiang Zhang2017-05-101-1/+1
|
* bpo-30285: Optimize case-insensitive matching and searching (#1482)Serhiy Storchaka2017-05-091-0/+4
| | | | of regular expressions.
* bpo-30024: Circular imports involving absolute imports with binding (#1264)Serhiy Storchaka2017-05-091-0/+4
| | | a submodule to a name are now supported.
* bpo-29979: Rewrite cgi.parse_multipart to make it consistent with ↵Pierre Quentel2017-05-082-9/+18
| | | | FieldStorage (#991)
* Fix a trivial typo in global section (#1497)Jim Fasarakis-Hilliard2017-05-081-1/+1
|
* Closes bpo-30168: indent methods in Logger Class (#1295)Jim Fasarakis-Hilliard2017-05-071-170/+169
|
* bpo-30218: support path-like objects in shutil.unpack_archive() (GH-1367)Jelle Zijlstra2017-05-051-0/+3
| | | Thanks to Jelle Zijlstra for the patch.
* bpo-29920: Document cgitb.text() and cgitb.html() functions (GH-849)masklinn2017-05-051-0/+18
|
* bpo-30215: Make re.compile() locale agnostic. (#1361)Serhiy Storchaka2017-05-051-0/+5
| | | | | | Compiled regular expression objects with the re.LOCALE flag no longer depend on the locale at compile time. Only the locale at matching time affects the result of matching.
* bpo-30273: Update sysconfig (#1464)Victor Stinner2017-05-041-1/+0
| | | | | | | | | | The AST_H_DIR variable was removed from Makefile.pre.in by the commit a5c62a8e9f0de6c4133825a5710984a3cd5e102b (bpo-23404). AST_H_DIR was hardcoded to "Include", so replace the removed variable by its content. Remove also ASDLGEN variable from sysconfig example since this variable was also removed.
* bpo-29956: Improve the math.exp() related documentation. (#1073)Serhiy Storchaka2017-05-043-14/+28
|
* bpo-28315: Improve code examples in docs (GH-1372)UltimateCoder2017-05-0312-30/+30
| | | | | | Replace File "<stdin>", line 1, in ? with File "<stdin>", line 1, in <module>
* bpo-30103: Allow Uuencode in Python using backtick as zero instead of space ↵Xiang Zhang2017-05-034-5/+30
| | | | | | (#1326)
* Fix typo in selectors.rst (#1383)Tong SHEN2017-05-021-1/+1
| | | decriptor -> descriptor
* Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS ↵Nathaniel J. Smith2017-05-021-3/+3
| | | | transition (#1355)
* bpo-29679: Implement @contextlib.asynccontextmanager (#360)Jelle Zijlstra2017-05-013-0/+38
|
* bpo-30208: DOC: fix small typos in IDLE (#1354)csabella2017-04-291-8/+8
|
* Improve the grammar in windows.rst (GH-1330)Wieland Hoffmann2017-04-281-3/+3
|