summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
...
* Document Path.is_mount(), update Misc/ACKS and Misc/NEWS (#2980)Łukasz Langa2017-08-011-0/+12
|
* Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896)Alexander Belopolsky2017-07-311-21/+49
| | | | | | | | | | | | | | | | | | * Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. * bpo-5288: Implemented %z formatting of sub-minute offsets. * bpo-5288: Removed mentions of the whole minute limitation on TZ offsets. * bpo-5288: Removed one more mention of the whole minute limitation. Thanks @csabella! * Fix a formatting error in the docs * Addressed review comments. Thanks, @haypo.
* bpo-30522: Implemented a method to allow setting a logging.StreamHander's ↵Vinay Sajip2017-07-301-0/+13
| | | | stream. (GH-2921)
* bpo-30803: clarify truth value testing documentation (#2508)Peter Thomassen2017-07-291-19/+14
| | | Initial patch by Peter Thomassen.
* Fix trivial typo in multiprocessing documentation (GH-2930)Yuval Langer2017-07-281-1/+1
|
* bpo-30302: Update WhatsNew and documentation. (#2929)Utkarsh Upadhyay2017-07-281-1/+1
| | | | | | * Update 'Porting to .37' section. * Fix a minor example in the doc.
* Add the link to asyncio source code in the docs (GH-2373)lf2017-07-258-3/+23
|
* bpo-30302 Make timedelta.__repr__ more informative. (#1493)Utkarsh Upadhyay2017-07-251-3/+4
|
* bpo-30456: Clarify example for duplicates in second argument of isinstance ↵Eli Boyarski2017-07-241-1/+2
| | | | (GH-1699)
* Fix typo in Turtle Docs: yingyang -> yinyang (GH-2770)靳阳2017-07-201-1/+1
|
* bpo-30794: added kill() method to multiprocessing.Process (#2528)Vitor Pereira2017-07-181-0/+6
| | | | | | | | | | | | | | * bpo-30794: added kill() method to multiprocessing.Process * Added entries to documentation and NEWS * Refactored test_terminate and test_kill * Fix SIGTERM and SIGKILL being used on Windows for the tests * Added "versionadded" marker to the documentation * Fix trailing whitespace in doc
* Doc that 'sorted' args are keyword-only, fix 'reverse' default (#2706)Łukasz Rogalski2017-07-142-2/+2
|
* bpo-26506: hex() documentation: mention %x % int (GH-2525)Manvisha Kodali2017-07-061-10/+52
|
* bpo-30862: Updated Logger.setLevel documentation. (GH-2604)Vinay Sajip2017-07-061-4/+8
|
* bpo-6691: Pyclbr now reports nested classes and functions. (#2503)csabella2017-07-041-55/+92
| | | Original patch by Guilherme Polo. Revisions by Cheryl Sabella.
* Fix bpo-30596: Add close() method to multiprocessing.Process (#2010)Antoine Pitrou2017-06-241-0/+10
| | | | | | | | | | * Fix bpo-30596: Add close() method to multiprocessing.Process * Raise ValueError if close() is called before the Process is finished running * Add docs * Add NEWS blurb
* bpo-21071: struct.Struct.format type is now str (#845)Victor Stinner2017-06-231-0/+3
|
* bpo-30736: upgrade to Unicode 10.0 (#2344)Benjamin Peterson2017-06-232-5/+5
| | | Straightforward. While we're at it, though, strip trailing whitespace from generated tables.
* 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.
* 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-201-0/+13
| | | | | | | | | * 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-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.
* 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
|
* Mention how to disable signal fd wakeup (#2140)Antoine Pitrou2017-06-131-2/+4
|
* bpo-11822: Improve disassembly to show embedded code objects. (#1844)Serhiy Storchaka2017-06-111-2/+11
| | | 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.
* 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-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-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-061-1/+80
| | | 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).
* 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-29660: traceback: Document that etype is ignored in some places. (GH-344)Matthias Bussonnier2017-06-011-3/+11
|
* 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-16500: Don't use string constants for os.register_at_fork() behavior (#1834)Gregory P. Smith2017-05-291-8/+16
| | | | Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity.
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-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)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.