| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-16500: Allow registering at-fork handlers (#1715) | Antoine Pitrou | 2017-05-27 | 1 | -0/+25 |
| | | | | | | | | | | | | | * 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) | Mariatta | 2017-05-27 | 1 | -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 Storchaka | 2017-05-27 | 1 | -3/+3 |
| | | | | Also document that some attributes may be None. | ||||
| * | Fix the signature of JSONDecodeError (no end parameter). (#1827) | Serhiy Storchaka | 2017-05-27 | 1 | -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 Khurana | 2017-05-27 | 1 | -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-30420: List cwd parameter in subprocess convenience APIs (GH-1685) | Alex Gaynor | 2017-05-26 | 1 | -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 Khatri | 2017-05-24 | 1 | -0/+3 |
| | | | | | not found (GH-972) | ||||
| * | bpo-30160: Clarify intended usage of wfile (gh-1300) | jugglinmike | 2017-05-24 | 1 | -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 Wirtel | 2017-05-24 | 1 | -2/+13 |
| | | | | | | | | | 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 Ward | 2017-05-24 | 1 | -3/+5 |
| | | |||||
| * | bpo-21056: Document return type of next method of csv reader (#146) | Amit Kumar | 2017-05-23 | 1 | -2/+4 |
| | | |||||
| * | bpo-30376: Update outdated WindowObject references (#1630) | Berker Peksag | 2017-05-23 | 1 | -8/+8 |
| | | |||||
| * | Corrected grammar mistake in documentation (#1713) | Ben Lloyd | 2017-05-22 | 1 | -2/+2 |
| | | | | There was an unneeded space before a closing parenthesis in the `unittest.mock` documentation. | ||||
| * | Fix typos in multiple `.rst` files (#1668) | delirious-lettuce | 2017-05-19 | 14 | -24/+24 |
| | | |||||
| * | Remove trailing semicolon in datetime doc example (GH-1653) | delirious-lettuce | 2017-05-19 | 1 | -1/+1 |
| | | |||||
| * | bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613) | Serhiy Storchaka | 2017-05-16 | 4 | -4/+4 |
| | | | | | | | | | * 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. | ||||
| * | bpo-29651 - Cover edge case of square brackets in urllib docs (#1128) | Howie Benefiel | 2017-05-16 | 1 | -0/+6 |
| | | |||||
| * | bpo-29196: Removed old-deprecated classes Plist, Dict and _InternalDict (#488) | Serhiy Storchaka | 2017-05-15 | 1 | -24/+8 |
| | | | | | | 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 Stinner | 2017-05-15 | 1 | -0/+2 |
| | | | | Co-Authored-By: Chi Hsuan Yen <yan12125@gmail.com>. | ||||
| * | bpo-30358: Document sort argument of profile.runctx() (GH-1566) | csabella | 2017-05-14 | 1 | -2/+2 |
| | | |||||
| * | bpo-30178: Indent methods and attributes of MimeType class (GH-1306) | Jim Fasarakis-Hilliard | 2017-05-13 | 1 | -43/+43 |
| | | |||||
| * | Indented Handler sections for improved clarity. (#1554) | Vinay Sajip | 2017-05-12 | 1 | -66/+67 |
| | | | | Indented parts of the Handler class documentation for improved presentation, analogous to a recent similar change for the Logger class. | ||||
| * | bpo-29979: Rewrite cgi.parse_multipart to make it consistent with ↵ | Pierre Quentel | 2017-05-08 | 1 | -9/+10 |
| | | | | | FieldStorage (#991) | ||||
| * | Closes bpo-30168: indent methods in Logger Class (#1295) | Jim Fasarakis-Hilliard | 2017-05-07 | 1 | -170/+169 |
| | | |||||
| * | bpo-30218: support path-like objects in shutil.unpack_archive() (GH-1367) | Jelle Zijlstra | 2017-05-05 | 1 | -0/+3 |
| | | | | Thanks to Jelle Zijlstra for the patch. | ||||
| * | bpo-29920: Document cgitb.text() and cgitb.html() functions (GH-849) | masklinn | 2017-05-05 | 1 | -0/+18 |
| | | |||||
| * | bpo-30215: Make re.compile() locale agnostic. (#1361) | Serhiy Storchaka | 2017-05-05 | 1 | -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 Stinner | 2017-05-04 | 1 | -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 Storchaka | 2017-05-04 | 2 | -12/+26 |
| | | |||||
| * | bpo-28315: Improve code examples in docs (GH-1372) | UltimateCoder | 2017-05-03 | 5 | -21/+21 |
| | | | | | | | 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 Zhang | 2017-05-03 | 2 | -5/+12 |
| | | | | | | | (#1326) | ||||
| * | Fix typo in selectors.rst (#1383) | Tong SHEN | 2017-05-02 | 1 | -1/+1 |
| | | | | decriptor -> descriptor | ||||
| * | Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS ↵ | Nathaniel J. Smith | 2017-05-02 | 1 | -3/+3 |
| | | | | | transition (#1355) | ||||
| * | bpo-29679: Implement @contextlib.asynccontextmanager (#360) | Jelle Zijlstra | 2017-05-01 | 1 | -0/+30 |
| | | |||||
| * | bpo-30208: DOC: fix small typos in IDLE (#1354) | csabella | 2017-04-29 | 1 | -8/+8 |
| | | |||||
| * | bpo-27200: Fix several doctests (GH-604) | Marco Buttu | 2017-04-27 | 6 | -16/+28 |
| | | |||||
| * | bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1296) | Dong-hee Na | 2017-04-26 | 1 | -7/+0 |
| | | |||||
| * | bpo-30101: Add support for curses.A_ITALIC. (#1015) | Eijebong | 2017-04-26 | 1 | -0/+5 |
| | | |||||
| * | bpo-29974: Improve typing.TYPE_CHECKING example (GH-982) | Mathias Rav | 2017-04-26 | 1 | -2/+7 |
| | | | | | | | | | * Fix PEP 8 (SomeType instead of some_type) * Add a function parameter annotation * Explain, using wording from PEP 484 and PEP 526, why one annotation is in quotes and another is not. Suggested by Ivan Levkevskyi. | ||||
| * | bpo-28698: Fix c_wchar_p doc example (GH-1160) | Louie Lu | 2017-04-26 | 1 | -5/+9 |
| | | |||||
| * | bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) | csabella | 2017-04-26 | 2 | -81/+90 |
| | | | | | | | | | | | Builtin container types have two potential link targets in the docs: - their entry in the list of builtin callables - their type documentation This change brings `bytes` and `bytearray` into line with other container types by having cross-references default to linking to their type documentation, rather than their builtin callable entry. | ||||
| * | bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926) | Jim Fasarakis-Hilliard | 2017-04-25 | 1 | -1/+1 |
| | | |||||
| * | bpo-28851: Improve namedtuple documentation (GH-1274) | csabella | 2017-04-25 | 1 | -3/+3 |
| | | | | Clarify that a sequence of strings is the preferred value for 'field_names'. | ||||
| * | bpo-30144: Import collections ABC from collections.abc rather than ↵ | Serhiy Storchaka | 2017-04-24 | 1 | -1/+1 |
| | | | | | collections. (#1263) | ||||
| * | Fix trailing colon and newline in test.rst (#1250) | Louie Lu | 2017-04-22 | 1 | -1/+2 |
| | | |||||
| * | bpo-10379: Add %char examples to locale.format() docs (GH-1145) | Berker Peksag | 2017-04-20 | 1 | -3/+4 |
| | | |||||
| * | bpo-10076: Compiled regular expression and match objects now are copyable. ↵ | Serhiy Storchaka | 2017-04-16 | 1 | -0/+10 |
| | | | | | (#1000) | ||||
| * | bpo-29995: re.escape() now escapes only special characters. (#1007) | Serhiy Storchaka | 2017-04-13 | 1 | -3/+7 |
| | | |||||
| * | Fix a typo in Doc/library/functions.rst (GH-1117) | Joshua Diaddigo | 2017-04-13 | 1 | -1/+1 |
| | | | | Replace `For object's ... ` with `For objects ...` | ||||
| * | bpo-30021: Add examples for re.escape(). (#1048) | Serhiy Storchaka | 2017-04-13 | 1 | -3/+14 |
| | | | | | And fix the parameter name. | ||||
