summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339)_ = NaN2017-06-231-3/+3
|
* bpo-30619: Clarify typing.Union documentation (GH-2326)khyox2017-06-221-1/+1
| | | When a class and its subclass are present, the latter is skipped.
* Fix typo in 3.7 whatsnew (#2308)Daniel Porteous2017-06-211-1/+1
|
* bpo-29933: Improve set_write_buffer_limits description (GH-2262)Kojo Idrissa2017-06-201-1/+7
| | | | | Improve the description of the high and low parameters for set_write_buffer_limits. Also fixed a small grammatical issue.
* bpo-30054: Expose tracemalloc C API (#1236)Victor Stinner2017-06-202-0/+35
| | | | | | | | | * Make PyTraceMalloc_Track() and PyTraceMalloc_Untrack() functions public (remove the "_" prefix) * Remove the _PyTraceMalloc_domain_t type: use directly unsigned int. * Document methods Note: methods are already tested in test_tracemalloc.
* bpo-29755: Fixed the lgettext() family of functions in the gettext module. ↵Serhiy Storchaka2017-06-201-81/+80
| | | | | | | | (#2266) They now always return bytes. Updated the gettext documentation.
* bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)Nick Coghlan2017-06-182-14/+10
| | | | | | | | | | | | - removes PY_WARN_ON_C_LOCALE build time flag - locale coercion and compatibility warnings are now always compiled in, but are off by default - adds PYTHONCOERCECLOCALE=warn runtime option to aid in debugging potentially locale related compatibility problems Due to not-yet-resolved test failures on *BSD systems (including Mac OS X), this also temporarily disables UTF-8 as a locale coercion target, and skips testing the interpreter's behavior in the POSIX locale.
* bpo-29783: Replace codecs.open() with io.open() (#599)Victor Stinner2017-06-161-5/+2
|
* bpo-30450: Add NEWS and whatsnew (GH-2236)Zachary Ware2017-06-161-0/+6
|
* bpo-30176: Add missing curses cell attributes constants (GH-1302)Xiang Zhang2017-06-161-10/+46
|
* bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when ↵Milan Oberkirch2017-06-141-0/+5
| | | | | parent isn't a package (GH-1899) Previously AttributeError was raised, but that's not very reflective of the fact that the requested module can't be found since the specified parent isn't actually a package.
* Fix trivial typo in Readme (GH-2185)csabella2017-06-141-1/+1
| | | Replace platform with platforms.
* bpo-25514: Improve IDLE's connection refused message (#2177)terryjreedy2017-06-141-0/+44
| | | When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
* bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173)Ben Hoyt2017-06-131-1/+1
|
* bpo-30656: Fix Python C API Module Objects documentation (GH-2170)Emily Morehouse2017-06-131-1/+1
| | | `PyModule_New()` now refers to `PyModule_NewObject()`
* bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926)Sanyam Khurana2017-06-131-0/+4
| | | | | | | | bpo-24744: Raise error in pkgutil.walk_packages if path is str Previously an empty result list was accidentallly returned, since the code iterated over the string as if it were the expected list of paths, and of course found nothing.
* Mention how to disable signal fd wakeup (#2140)Antoine Pitrou2017-06-131-2/+4
|
* bpo-6519: Improve Python Input Output Tutorial (GH-2143)Andrew Kuchling2017-06-131-21/+29
| | | Move up the discussion about 'with' keyword, so it appears earlier in the document.
* bpo-30621: Update Input Output Tutorial Example(GH-2074)suketa2017-06-121-0/+1
| | | import json before using json module
* bpo-11822: Improve disassembly to show embedded code objects. (#1844)Serhiy Storchaka2017-06-112-2/+19
| | | The depth argument limits recursion.
* remove extra word (#2101)Benjamin Peterson2017-06-111-2/+2
|
* clarify recv() and send() on SSLObject (#2100)Benjamin Peterson2017-06-111-2/+2
| | | SSLObject has recv() and send(), but they don't do any network io.
* Show what's changed when Travis fails regen check (GH-2095)Zachary Ware2017-06-111-130/+130
| | | Also fixed a few more line endings that were missed in GH-840, which were causing failure.
* bpo-28180: Implementation for PEP 538 (#659)Nick Coghlan2017-06-112-0/+81
| | | | | | | | | | - new PYTHONCOERCECLOCALE config setting - coerces legacy C locale to C.UTF-8, C.utf8 or UTF-8 by default - always uses C.UTF-8 on Android - uses `surrogateescape` on stdin and stdout in the coercion target locales - configure option to disable locale coercion at build time - configure option to disable C locale warning at build time
* bpo-30312: Small correction in datastructures set code sample (GH-2081)KatherineMichel2017-06-101-1/+1
|
* bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535)csabella2017-06-101-4/+4
| | | Mention that fnmatchcase does not call normcase, and fnmatch does.
* bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1536)Jim Fasarakis-Hilliard2017-06-091-5/+10
| | | Document that assertNotRegexpMatches is a deprecated alias for assertNotRegex.
* bpo-30014: make poll-like selector's modify() method faster (#1030)Giampaolo Rodola2017-06-091-0/+3
| | | | | | | | | | | | | | | | * #30014: make selectors.DefaultSelector.modify() faster by relying on selector's modify() method instead of un/register()ing the fd * #30014: add unit test * speedup poll/epoll/devpoll modify() method by using internal modify() call * update doc * address PR comments * update NEWS entries * use != instead of 'is not'
* bpo-30217: Add the operators ~ and | to the index (#1502)Marco Buttu2017-06-091-0/+2
|
* bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 (GH-148)Chandan Kumar2017-06-091-11/+8
| | | | | * RFC 1750 has been been obsoleted by RFC 4086. * RFC 3280 has been obsoleted by RFC 5280. * RFC 4366 has been obsoleted by RFC 6066.
* bpo-24755: Document asyncio.wrap_future (GH-603)adisbladis2017-06-091-0/+5
|
* bpo-30486: Allow setting cell value (#1840)Lisa Roach2017-06-081-0/+6
| | | The cell_contents attribute of the cell object is now writable.
* bpo-29596: Improve clinic howto documentation (GH-1710)gfyoung2017-06-061-3/+3
| | | Clarify that `two-pass` buffer can only be dumped once, and it prints out all text sent to it during all processing, even from Clinic blocks *after* the dumping point.
* bpo-30583: Fix typo in datetime dateutil documentation (GH-1972)wim glenn2017-06-061-2/+2
| | | Replace `datetuil` into `dateutil`
* bpo-25324: Move the description of tokenize tokens to token.rst. (#1911)Serhiy Storchaka2017-06-062-39/+39
|
* bpo-30520: Implemented pickling for loggers. (#1956)Vinay Sajip2017-06-061-0/+2
| | | Implemented pickling for loggers.
* bpo-30095: Make CSS classes used by calendar.HTMLCalendar customizable (GH-1439)Oz N Tiram2017-06-062-8/+96
| | | Several class attributes have been added to calendar.HTMLCalendar that allow customization of the CSS classes used in the resulting HTML. This can be done by subclasses HTMLCalendar and overwriting those class attributes (Patch by Oz Tiram).
* bpo-30530: Update Descriptor How To Documentation (GH-1845)Mariano Anaya2017-06-051-1/+1
| | | | Update the code example in Functions and Methods section Remove objtype argument in MethodType
* bpo-30538: Update count() in Functional Programming HOWTO (#1919)csabella2017-06-041-9/+14
| | | | | | * bpo-30538: Update count() in Functional HOWTO * bpo-30538: Update enumerate() arguments in Functional HOWTO
* Fix bpo-30526: Add TextIOWrapper.reconfigure() and a ↵Antoine Pitrou2017-06-031-0/+18
| | | | | | | | | | TextIOWrapper.write_through attribute (#1922) * Fix bpo-30526: Add TextIOWrapper.reconfigure() * Apply Nick's improved wording * Update Misc/NEWS
* bpo-24899: Add comparison table for os.path -> pathlib (GH-1753)Jamiel Almeida2017-06-021-0/+33
|
* bpo-30052: Always regenerate cross-references (#1339)Nick Coghlan2017-06-021-2/+7
| | | | | | | | | | | | | * bpo-30052: Always regenerate cross-references The patch for bpo-30052 changed the preferred link target for :func:`bytes` and :func`bytearray` references to be the respective type definitions rather than the corresponding builtin function entries. This patch changes the daily documentation builds to disable the output caching in Sphinx, in order to ensure that cross-reference changes like this one are reliably picked up and applied automatically after merging.
* bpo-29660: traceback: Document that etype is ignored in some places. (GH-344)Matthias Bussonnier2017-06-011-3/+11
|
* Mark PyDict_GetItemWithError() as returning a borrowed reference. (#1818)Eric Snow2017-06-011-0/+4
|
* bpo-30499: Remove a deprecated note about sets. (GH-1848)Julien2017-06-011-3/+1
|
* bpo-27618: Clarify that threading.Lock is a factory function (GH-1307)csabella2017-06-011-2/+3
|
* bpo-25324: copy tok_name before changing it (#1608)Albert-Jan Nijburg2017-05-311-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | * add test to check if were modifying token * copy list so import tokenize doesnt have side effects on token * shorten line * add tokenize tokens to token.h to get them to show up in token * move ERRORTOKEN back to its previous location, and fix nitpick * copy comments from token.h automatically * fix whitespace and make more pythonic * change to fix comments from @haypo * update token.rst and Misc/NEWS * change wording * some more wording changes
* bpo-17188: add missing periods at the end of sentences (GH-1875)Mariatta2017-05-301-2/+2
|
* Improve grammar in The Import System documentation (GH-1862)kms708472017-05-301-6/+6
| | | | Replace `an ModuleNotFoundError` with `a ModuleNotFoundError`. Replace `an path` with `a path`.
* bpo-30361: Use better example for mixed-type operands (#1701)gfyoung2017-05-291-4/+2
|