summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* Fix and improve `asyncio.run()` docs (GH-16403)Kyle Stanley2019-10-011-4/+2
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-304-532/+74
* bpo-38163: Child mocks detect their type as sync or async (GH-16471)Lisa Roach2019-09-301-1/+27
* bpo-37408: Precise that Tarfile "format" argument only concerns writing. (GH-...Pascal Chambon2019-09-281-2/+3
* bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)Prateek Nayak2019-09-261-1/+1
* Doc: Use the `with` statement in the first example of the ftplib doc. (GH-16271)Stéphane Wirtel2019-09-261-1/+2
* bpo-38112: Compileall improvements (GH-16012)Lumír 'Frenzy' Balhar2019-09-261-1/+38
* bpo-38255: super() can search attributes as well as methods (GH-16368)Raymond Hettinger2019-09-251-0/+4
* bpo-38260: Add Docs on asyncio.run (GH-16337)Emmanuel Arias2019-09-251-0/+12
* bpo-38136: Updates await_count and call_count to be different things (GH-16192)Lisa Roach2019-09-241-24/+13
* bpo-38237: Make pow's arguments have more descriptive names and be keyword pa...Ammar Askar2019-09-211-9/+15
* Doc: Remove provisional note for asyncio.run() (GH-16310)Kyle Stanley2019-09-201-2/+0
* bpo-37937: Mention frame.f_trace in sys.settrace docs (GH-15439)Ram Rachum2019-09-201-0/+11
* bpo-37353: Updated parser note about source code compatibility(GH-14277)Prateek Nayak2019-09-201-1/+2
* bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947)Lisa Roach2019-09-201-14/+17
* bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...Kyle Stanley2019-09-192-2/+16
* Doc: Clarify dict equality irrespective of ordering. (GH-16266)toonarmycaptain2019-09-191-1/+1
* bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249)Victor Stinner2019-09-181-2/+4
* Doc: Fix grammar/spelling in ssl.VERIFY_CRL_CHECK_LEAF docs (GH-16221)Jörn Heissler2019-09-171-2/+2
* bpo-38192: Fix remaining passing of "loop" in the protocol examples (GH-16202)Hrvoje Nikšić2019-09-171-5/+6
* Doc: Add list(dict) in stdtypes library (GH-16209)Adorilson Bezerra2019-09-171-0/+4
* bpo-28556: Update the opening note in typing docs (GH-16204)Ivan Levkivskyi2019-09-161-4/+3
* bpo-38178: Don't explicitly pass "loop" to EchoClientProtocol. (GH-16159)Hrvoje Nikšić2019-09-151-7/+7
* Doc: Fix link to window.getch in curses documentation (GH-16132)Anthony Sottile2019-09-141-1/+1
* Doc: fcntl.lockf() is more powerful than written (GH-6750)Eric O. LEBIGOT (EOL)2019-09-131-2/+2
* bpo-32790: Add info about alt format using # for 'g' in chart (GH-6624)bchhabra24902019-09-131-1/+2
* bpo-26468: Doc: improve the documentation of shutil.copy2 when it can fail. (...Windson yang2019-09-131-1/+2
* Doc: Improve consistency of os.path.normcase with other os.path functions (GH...Kexuan Sun2019-09-131-2/+0
* bpo-12707: deprecate info(), geturl(), getcode() methods in favor of headers,...Ashwin Ramaswami2019-09-132-15/+63
* bpo-36889: Document Stream class and add docstrings (GH-14488)Xtreak2019-09-132-11/+204
* bpo-8538: Add support for boolean actions to argparse (GH-11478)Rémi Lapeyre2019-09-131-3/+16
* Doc: Add example snippet for str.isupper() (GH-14681)Kishore Vancheeshwaran2019-09-131-0/+10
* bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)Christian Heimes2019-09-131-4/+13
* bpo-36046: Add user and group parameters to subprocess (GH-11950)Patrick McLean2019-09-121-2/+30
* bpo-37908: Add an example of ArgumentParser.exit() (GH-15455)Hai Shi2019-09-121-1/+8
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Andrew Svetlov2019-09-122-10/+31
* bpo-35325: Doc: imp.find_module() return value documentation discrepancy (GH-...Windson yang2019-09-121-6/+5
* bpo-35685: Add examples of unittest.mock.patch.dict usage (GH-11456)Emmanuel Arias2019-09-121-4/+27
* bpo-36675: Remove obsolete code. (GH-16024)Julien Palard2019-09-121-2/+0
* bpo-32008: Prefer client or TLSv1_2 in examples (GH-5797)Christian Heimes2019-09-121-8/+14
* bpo-9938: Add optional keyword argument exit_on_error to argparse.ArgumentPar...Hai Shi2019-09-121-1/+29
* bpo-13927: time.ctime and time.asctime return string explantion (GH-11303)Harmandeep Singh2019-09-121-7/+15
* Doc: Add example of dict() function with positional and keyword arguments (GH...Georgy Frolov2019-09-121-1/+2
* bpo-18578: Rename and document test.bytecode_helper as test.support.bytecode_...Joannah Nanjekye2019-09-121-0/+30
* Correct typos in the codecs module documentation (#15135)Géry Ogam2019-09-121-60/+61
* bpo-36270: Doc: add link to traceback object reference (GH-13119)Björn Meier2019-09-111-1/+1
* Doc: recursive glob ** follows symlinks to directories (GH-12918)Marc2019-09-111-2/+3
* bpo-28724: Add methods send_fds and recv_fds to the socket module (GH-12889)Joannah Nanjekye2019-09-111-0/+23
* Doc: Fix missing negation. (GH-14640)Julien Palard2019-09-111-2/+2
* bpo-36182: Update pathlib.Path.write_text() docs (GH-12161)Lysandros Nikolaou2019-09-111-0/+3