summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...Giampaolo Rodola2018-06-121-2/+51
* bpo-27397: Make email module properly handle invalid-length base64 strings (#...Tal Einat2018-06-121-0/+4
* bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530)Christian Heimes2018-06-111-13/+25
* bpo-30820: Remove incorrect docs for email.contentmanager.raw_data_manager (#...Zackery Spytz2018-06-111-9/+0
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578)Alexander Belopolsky2018-06-101-2/+1
* bpo-33610: Update IDLE Code Context doc entry (GH-7597)Terry Jan Reedy2018-06-101-1/+2
* Fix typo in object.__getnewargs__() documentation (GH-7554)Andrés Delfino2018-06-101-1/+1
* doc: Fix typo in asyncio-eventloop.rst (GH-7345)MarcoFalke2018-06-091-2/+2
* Fix indendation level of versionchanged directive in configparser.items() doc...Andrés Delfino2018-06-091-4/+4
* bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495)Andrés Delfino2018-06-081-3/+1
* bpo-33800: Fix default argument for parameter dict_type of ConfigParser/RawCo...Andrés Delfino2018-06-081-2/+9
* bpo-33197: Add versionadded tag to the documentation of ParameterKind (GH-7536)Dong-hee Na2018-06-081-0/+2
* bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326)Elvis Pranskevichus2018-06-082-32/+69
* bpo-33798: Update csv document about dict order (GH-7490)Andrés Delfino2018-06-081-3/+1
* bpo-33197: Add description property for _ParameterKind. (GH-7206)Dong-hee Na2018-06-081-0/+17
* bpo-33609: small wording fixes to dict ordering docsNeil Schemenauer2018-06-071-5/+5
* bpo-17909: Document that json.load can accept a binary IO (GH-7366)Anthony Sottile2018-06-071-3/+7
* bpo-29235: Update document for Profiler's context manager (GH-7331)Scott Sanderson2018-06-071-0/+3
* update to Unicode 11.0.0 (closes bpo-33778) (GH-7439)Benjamin Peterson2018-06-071-4/+4
* bpo-28240: timeit: Update repeat() doc (GH-7419)Victor Stinner2018-06-061-4/+10
* bpo-33504: Migrate configparser from OrderedDict to dict. (#6819)John Reese2018-06-051-41/+9
* bpo-12486: Document tokenize.generate_tokens() as public API (#6957)Thomas Kluyver2018-06-051-1/+12
* bpo-33165: Added stacklevel parameter to logging APIs. (GH-7424)Vinay Sajip2018-06-051-16/+34
* bpo-31215: Add version changed notes for OpenSSL 1.1.0 compatibility (GH-7346)Mayank Singhal2018-06-051-0/+3
* bpo-32392: Document env keyword argument of subprocess.run() (GH-7289)Tobias Kunze2018-06-051-1/+6
* bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093)INADA Naoki2018-06-041-0/+23
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-041-4/+4
* bpo-27902: Add compatibility note to Profile docs (GH-7295)Tobias Kunze2018-06-041-5/+6
* bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)Farhaan Bukhsh2018-06-041-6/+7
* bpo-23495: Correct the documentation for writerows() of csv Writer objects (G...Zackery Spytz2018-06-021-2/+3
* bpo-29235: Make cProfile.Profile a context manager (GH-6808)Scott Sanderson2018-06-011-0/+10
* bpo-33400: Removed references to RFC3339 and ISO8601 from the logging documen...Vinay Sajip2018-06-012-12/+12
* bpo-32519: Removed misleading sentence from EnvBuilder documentation. (GH-7296)Vinay Sajip2018-06-011-2/+1
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-3118-50/+46
* bpo-31368: Enhance os.preadv() documentation (GH-7254)Pablo Galindo2018-05-301-95/+114
* bpo-33238: Add InvalidStateError to concurrent.futures. (GH-7056)jhaydaman2018-05-301-0/+16
* Fix typo introduced in GH-7217 (#7230)Elvis Pranskevichus2018-05-301-1/+1
* bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217)Elvis Pranskevichus2018-05-291-0/+3
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Elvis Pranskevichus2018-05-291-1/+8
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-291-0/+4
* bpo-31639: Change ThreadedHTTPServer to ThreadingHTTPServer class name (GH-7195)Géry Ogam2018-05-291-2/+2
* bpo-30935: update get_event_loop docs (GH-2731)Mandeep Singh2018-05-291-1/+4
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-291-4/+0
* bpo-32878: Adds documentation for st_ino on Windows (GH-5764)Steve Dower2018-05-291-1/+11
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Yury Selivanov2018-05-281-2/+5
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-5/+12
* bpo-32380: Create functools.singledispatchmethod (#6306)Ethan Smith2018-05-261-0/+46
* Document typing.NoReturn (GH-7107)Ivan Levkivskyi2018-05-251-0/+12
* bpo-33109: argparse subparsers are once again not required by default (GH-6919)Ned Deily2018-05-241-1/+1
* bpo-33540: Add block_on_close attr to socketserver (GH-6911)Victor Stinner2018-05-241-2/+7