summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* Fix typos '.::' should typically just be '::'. (GH-6165) (GH-6300)Miss Islington (bot)2018-03-292-2/+2
* FIX documentation and NEWS of ThreadedHTTPServer. (GH-6207) (GH-6302)Miss Islington (bot)2018-03-291-2/+5
* [3.7] Fix duplicating words words. (GH-6296) (GH-6297)Serhiy Storchaka2018-03-284-6/+6
* Fix senfile typo (GH-6265) (#6274)Miss Islington (bot)2018-03-281-1/+1
* bpo-27212: Modify islice recipe to consume initial values preceding start (GH...Miss Islington (bot)2018-03-271-7/+16
* Corrected link targets in collections.rst (GH-1052)Miss Islington (bot)2018-03-261-24/+31
* Clarify fd inheritance when close_fds=False. (GH-6240)Miss Islington (bot)2018-03-251-1/+4
* bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) (#6236)Nick Coghlan2018-03-251-2/+2
* bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (G...Miss Islington (bot)2018-03-231-1/+1
* bpo-31639: Use threads in http.server module. (GH-5018)Miss Islington (bot)2018-03-231-2/+9
* Fix a reference to the MRE book in re docs (GH-1113)Miss Islington (bot)2018-03-231-10/+8
* bpo-27683: Fix a regression for host() of ipaddress network objects (GH-6016)Miss Islington (bot)2018-03-211-1/+11
* bpo-18802: Add more details to ipaddress documentation (GH-6083)Miss Islington (bot)2018-03-211-16/+47
* bpo-28247: Document Windows executable creation in zipapp (GH-6158)Miss Islington (bot)2018-03-201-0/+169
* Fix docs markup for asyncio current_task() and all_tasks() (GH-6089)Miss Islington (bot)2018-03-121-2/+2
* bpo-32996: Improve What's New in 3.7. (GH-5983)Miss Islington (bot)2018-03-111-0/+6
* bpo-33045: Fix typos in SSL documentation (GH-6065)Miss Islington (bot)2018-03-111-2/+2
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Miss Islington (bot)2018-03-101-0/+50
* bpo-26701: Add documentation for __trunc__ (GH-6049)Miss Islington (bot)2018-03-102-3/+6
* Warn that dbm.dumb.open() can crash Python (GH-6047) (GH-6048)Miss Islington (bot)2018-03-101-0/+5
* Warn that compile() can crash when compiling to an AST object (GH-6043) (GH-6...Miss Islington (bot)2018-03-091-0/+6
* bpo-32758: Warn that ast.parse() and ast.literal_eval() can segfault the inte...Miss Islington (bot)2018-03-091-0/+10
* Fix some ipaddress documentation errors (GH-6021)Miss Islington (bot)2018-03-081-8/+12
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Miss Islington (bot)2018-03-071-19/+22
* Fix missing coroutine declaration in the asyncio documentation. (GH-5964)Miss Islington (bot)2018-03-031-1/+1
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (GH-...Miss Islington (bot)2018-03-021-0/+7
* Fix typo in logging doc: picked -> pickled (GH-5942)Miss Islington (bot)2018-02-281-1/+1
* Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (GH-5912)...Miss Islington (bot)2018-02-271-10/+6
* bpo-31453: Add setter for min/max protocol version (GH-5259)Miss Islington (bot)2018-02-271-2/+99
* [3.7] bpo-32951: Disable SSLSocket/SSLObject constructor (GH-5864) (#5925)Christian Heimes2018-02-271-6/+18
* bpo-28124: deprecate ssl.wrap_socket() (GH-5888)Miss Islington (bot)2018-02-271-182/+210
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (GH-5663)Miss Islington (bot)2018-02-271-0/+9
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)Miss Islington (bot)2018-02-261-0/+7
* [3.7] bpo-30622: Improve NPN support detection (GH-5859) (#5860)Miss Islington (bot)2018-02-241-0/+17
* [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843)Miss Islington (bot)2018-02-241-11/+28
* bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)Miss Islington (bot)2018-02-231-1/+1
* bpo-32008: don't use PROTOCOL_TLSv1 in example (GH-5789)Miss Islington (bot)2018-02-211-2/+2
* bpo-28886: doc: Move deprecated abc decorators to separate section (GH-176)Miss Islington (bot)2018-02-211-22/+17
* Fix a typo in asyncio docs (GH-5721)Miss Islington (bot)2018-02-171-1/+1
* DOC: fix documentation for copyright and credits (GH-5706)Miss Islington (bot)2018-02-171-3/+7
* bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5...Miss Islington (bot)2018-02-171-1/+1
* bpo-32436: Add docs for contextvars (GH-5685)Miss Islington (bot)2018-02-162-0/+280
* Update and sync importlib.resources documentation (GH-5694) (#5697)Miss Islington (bot)2018-02-161-5/+22
* bpo-27846: Delete incorrect note in base64 docs (GH-5666)Miss Islington (bot)2018-02-141-8/+0
* bpo-30579: Docs for dynamic traceback creation (GH-5653)Miss Islington (bot)2018-02-131-1/+8
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (GH-5449) ...Miss Islington (bot)2018-02-121-0/+15
* bpo-32815: Improve docs on the subprocess API *text* parameter (GH-5622) (GH-...Miss Islington (bot)2018-02-111-8/+15
* bpo-11015: Update test.support documentation (GH-5619)Miss Islington (bot)2018-02-111-6/+722
* bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609) (GH-5611)Miss Islington (bot)2018-02-101-1/+1
* bpo-32585: Add tkinter.ttk.Spinbox. (GH-5221) (GH-5592)Miss Islington (bot)2018-02-091-5/+86