Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typos in multiple `.rst` files (#1668) | delirious-lettuce | 2017-05-19 | 17 | -30/+30 |
| | |||||
* | 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 | 6 | -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ński | 2017-05-16 | 1 | -1/+1 |
| | |||||
* | bpo-29898: Fix incorrect env variable name (GH-1576) | Berker Peksag | 2017-05-16 | 2 | -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 Benefiel | 2017-05-16 | 1 | -0/+6 |
| | |||||
* | bpo-29196: Removed old-deprecated classes Plist, Dict and _InternalDict (#488) | Serhiy Storchaka | 2017-05-15 | 2 | -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 Stinner | 2017-05-15 | 2 | -0/+4 |
| | | | Co-Authored-By: Chi Hsuan Yen <yan12125@gmail.com>. | ||||
* | bpo-30354: Update data model documentation for super() (GH-1561) | csabella | 2017-05-15 | 1 | -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) | 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 |
| | |||||
* | bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506) | Serhiy Storchaka | 2017-05-13 | 2 | -0/+8 |
| | | | | rather than `format(str(self), '')`. | ||||
* | 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-30281: Fix the default value for stop in PySlice_Unpack() (#1480) | Xiang Zhang | 2017-05-10 | 1 | -1/+1 |
| | |||||
* | bpo-30285: Optimize case-insensitive matching and searching (#1482) | Serhiy Storchaka | 2017-05-09 | 1 | -0/+4 |
| | | | | of regular expressions. | ||||
* | bpo-30024: Circular imports involving absolute imports with binding (#1264) | Serhiy Storchaka | 2017-05-09 | 1 | -0/+4 |
| | | | a submodule to a name are now supported. | ||||
* | bpo-29979: Rewrite cgi.parse_multipart to make it consistent with ↵ | Pierre Quentel | 2017-05-08 | 2 | -9/+18 |
| | | | | FieldStorage (#991) | ||||
* | Fix a trivial typo in global section (#1497) | Jim Fasarakis-Hilliard | 2017-05-08 | 1 | -1/+1 |
| | |||||
* | 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 | 3 | -14/+28 |
| | |||||
* | bpo-28315: Improve code examples in docs (GH-1372) | UltimateCoder | 2017-05-03 | 12 | -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 Zhang | 2017-05-03 | 4 | -5/+30 |
| | | | | | | (#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 | 3 | -0/+38 |
| | |||||
* | bpo-30208: DOC: fix small typos in IDLE (#1354) | csabella | 2017-04-29 | 1 | -8/+8 |
| | |||||
* | Improve the grammar in windows.rst (GH-1330) | Wieland Hoffmann | 2017-04-28 | 1 | -3/+3 |
| | |||||
* | bpo-27200: Fix several doctests (GH-604) | Marco Buttu | 2017-04-27 | 7 | -24/+39 |
| | |||||
* | Use the correct name for ISO in Unicode HOWTO. (#1312) | Jesse Gonzalez | 2017-04-27 | 1 | -3/+3 |
| | |||||
* | bpo-28415: Note 0 conversion different between Python and C (#885) | Louie Lu | 2017-04-27 | 2 | -42/+48 |
| | |||||
* | 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 | 3 | -89/+98 |
| | | | | | | | | | | 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 | 2 | -4/+4 |
| | | | | collections. (#1263) | ||||
* | bpo-29751: Improve PyLong_FromString documentation (GH-915) | csabella | 2017-04-24 | 1 | -7/+6 |
| | |||||
* | bpo-15718: Document the upper bound constrain on the __len__ return value. ↵ | Serhiy Storchaka | 2017-04-23 | 1 | -0/+9 |
| | | | | (#1256) | ||||
* | Remove outdated note about constraining of the bit shift right operand. (#1258) | Serhiy Storchaka | 2017-04-22 | 1 | -5/+0 |
| | | | The constrain was removed in bpo-29816. | ||||
* | Fix trailing colon and newline in test.rst (#1250) | Louie Lu | 2017-04-22 | 1 | -1/+2 |
| | |||||
* | Correct the README link in Unix install docs (#1245) | Sebastian Vetter | 2017-04-21 | 1 | -1/+1 |
| | |||||
* | bpo-10379: Add %char examples to locale.format() docs (GH-1145) | Berker Peksag | 2017-04-20 | 1 | -3/+4 |
| | |||||
* | Remove redundant comma in argparse HOWTO (#1141) | Berker Peksag | 2017-04-20 | 1 | -1/+1 |
| | | | Reported by Sean Canavan on docs@p.o. | ||||
* | Minor grammar fixes (GH-1174) | Mariatta | 2017-04-19 | 1 | -3/+4 |
| |