summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* bpo-27200: Fix several doctests (GH-604)Marco Buttu2017-04-277-24/+39
|
* Use the correct name for ISO in Unicode HOWTO. (#1312)Jesse Gonzalez2017-04-271-3/+3
|
* bpo-28415: Note 0 conversion different between Python and C (#885)Louie Lu2017-04-272-42/+48
|
* bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1296)Dong-hee Na2017-04-261-7/+0
|
* bpo-30101: Add support for curses.A_ITALIC. (#1015)Eijebong2017-04-261-0/+5
|
* bpo-29974: Improve typing.TYPE_CHECKING example (GH-982)Mathias Rav2017-04-261-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 Lu2017-04-261-5/+9
|
* bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271)csabella2017-04-263-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-Hilliard2017-04-251-1/+1
|
* bpo-28851: Improve namedtuple documentation (GH-1274)csabella2017-04-251-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 Storchaka2017-04-242-4/+4
| | | | collections. (#1263)
* bpo-29751: Improve PyLong_FromString documentation (GH-915)csabella2017-04-241-7/+6
|
* bpo-15718: Document the upper bound constrain on the __len__ return value. ↵Serhiy Storchaka2017-04-231-0/+9
| | | | (#1256)
* Remove outdated note about constraining of the bit shift right operand. (#1258)Serhiy Storchaka2017-04-221-5/+0
| | | The constrain was removed in bpo-29816.
* Fix trailing colon and newline in test.rst (#1250)Louie Lu2017-04-221-1/+2
|
* Correct the README link in Unix install docs (#1245)Sebastian Vetter2017-04-211-1/+1
|
* bpo-10379: Add %char examples to locale.format() docs (GH-1145)Berker Peksag2017-04-201-3/+4
|
* Remove redundant comma in argparse HOWTO (#1141)Berker Peksag2017-04-201-1/+1
| | | Reported by Sean Canavan on docs@p.o.
* Minor grammar fixes (GH-1174)Mariatta2017-04-191-3/+4
|
* Fix minor typos (GH-1173)cocoatomo2017-04-191-1/+1
|
* bpo-10076: Compiled regular expression and match objects now are copyable. ↵Serhiy Storchaka2017-04-161-0/+10
| | | | (#1000)
* bpo-19225: Remove duplicated description for standard warning categories ↵cocoatomo2017-04-151-12/+9
| | | | (GH-1068)
* bpo-30059: Include Py_Ellipsis in C API documentation (#1018)Michael Seifert2017-04-141-0/+11
|
* bpo-11913: Add README.rst to the distutils standard READMEs list (#563)Ryan Gonzalez2017-04-142-2/+13
|
* bpo-29995: re.escape() now escapes only special characters. (#1007)Serhiy Storchaka2017-04-132-4/+8
|
* Fix a typo in Doc/library/functions.rst (GH-1117)Joshua Diaddigo2017-04-131-1/+1
| | | Replace `For object's ... ` with `For objects ...`
* bpo-30021: Add examples for re.escape(). (#1048)Serhiy Storchaka2017-04-132-3/+16
| | | | And fix the parameter name.
* bpo-27200: Fix pathlib, ssl, turtle and weakref doctests (GH-616)Marco Buttu2017-04-134-9/+25
|
* bpo-29791: Clarify that flush is keyword-only argument (#1093)Berker Peksag2017-04-131-1/+1
| | | Reported by Lucio Ricardo Montero Valenzuela.
* bpo-30055: add testcleanup to leave a fresh context (#1094)Marco Buttu2017-04-131-0/+5
|
* bpo-26985: Add missing info of code object in inspect documentation (GH-1090)Xiang Zhang2017-04-131-179/+200
|