summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* IDLE doc: improve Startup failure subsection. (GH-18771)Miss Islington (bot)2020-03-101-7/+10
* [3.7] bpo-39808: Improve docs for pathlib.Path.stat() (GH-18719) (GH-18782)Miss Islington (bot)2020-03-101-1/+1
* Fix misleading statement about mixed-type numeric comparisons (GH-18615) (GH-...Miss Islington (bot)2020-03-031-2/+4
* [3.7] bpo-39794: Add --without-decimal-contextvar (GH-18702)Stefan Krah2020-02-291-3/+12
* bpo-13790: Change 'string' to 'specification' in format doc (GH-18690)Miss Islington (bot)2020-02-281-2/+2
* bpo-39654: Update pyclbr doc to reflect additional information returned (GH-1...Miss Islington (bot)2020-02-241-3/+6
* bpo-39576: Clarify the word size for the 32-bit build. (GH-18616) (#18617)Miss Islington (bot)2020-02-231-2/+2
* bpo-39576: docs: set context for decimal arbitrary precision arithmetic (GH-1...Miss Islington (bot)2020-02-211-8/+58
* bpo-38657: Clarify numeric padding behaviour in string formatting (GH-17036)Miss Islington (bot)2020-02-211-2/+3
* bpo-38374: Remove weakref.ReferenceError from docs (GH-18452)Miss Islington (bot)2020-02-111-6/+0
* bpo-13826: Clarify Popen constructor example (GH-18438)Miss Islington (bot)2020-02-101-2/+8
* bpo-39594: Fix typo in os.times documentation (GH-18443)Miss Islington (bot)2020-02-101-4/+2
* [3.7] bpo-3950: Fix docs for default locale used by gettext to match implemen...Miss Islington (bot)2020-02-101-2/+2
* fixes typos in http.client documentation (GH-18300)Miss Islington (bot)2020-02-031-2/+2
* bpo-39392: Turtle overlap fill depends on OS (GH-18223)Miss Islington (bot)2020-01-271-0/+5
* bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) ...Miss Islington (bot)2020-01-251-1/+1
* bpo-36654: Add examples for using tokenize module programmatically (GH-12947)Miss Islington (bot)2020-01-251-0/+19
* bpo-39413: os.unsetenv() is not available on Windows (GH-18108)Miss Islington (bot)2020-01-221-1/+1
* improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)Miss Islington (bot)2020-01-211-8/+10
* bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054)Miss Islington (bot)2020-01-201-3/+2
* Fix asyncio.get_event_loop() documentation (GH-18051)Miss Islington (bot)2020-01-201-2/+4
* Fix Lock.locked() to remove extra bold highlighting (GH-18042) (#18044)Miss Islington (bot)2020-01-171-0/+1
* bpo-39348: Fix code highlight for the SOCK_NONBLOCK example (GH-18018)Miss Islington (bot)2020-01-161-1/+3
* [3.7] Fix typo in multiprocessing.pool.AsyncResult.successful doc. (GH-17932)...Miss Islington (bot)2020-01-151-1/+1
* Fix documentation in code.py (GH-17988)Miss Islington (bot)2020-01-141-1/+1
* bpo-39310: Update sys.float_info documentation (GH-17982)Miss Islington (bot)2020-01-131-8/+8
* bpo-3530: Add advice on when to correctly use fix_missing_locations in the AS...Miss Islington (bot)2020-01-121-1/+9
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Miss Islington (bot)2020-01-081-4/+4
* bpo-38623: Doc: Add section for site module CLI. (GH-17858)Miss Islington (bot)2020-01-071-2/+7
* Minor formatting improvements and fixes to idle.rst (GH-17165)Miss Islington (bot)2020-01-061-7/+8
* bpo-39183: Fix formatting in library/ensurepip (GH-17787)Miss Islington (bot)2020-01-011-1/+1
* bpo-34118: memoryview, range, and tuple are classes (GH-17761)Miss Islington (bot)2019-12-301-3/+3
* Fix typos and remove deprecated deprecation warning. (GH-17741)Miss Islington (bot)2019-12-291-11/+4
* bpo-38918: Add __module__ entry for function & method type in inspect docs ta...Miss Islington (bot)2019-12-201-0/+6
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17...Ned Deily2019-12-111-5/+19
* bpo-38916: Document array.array deprecation (GH-17523)Miss Islington (bot)2019-12-091-0/+4
* [3.7] bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190) (GH-17500)Miss Islington (bot)2019-12-071-0/+3
* bpo-27873: Update docstring for multiprocessing.Pool.map (GH-17436)Miss Islington (bot)2019-12-031-1/+2
* document threading.Lock.locked() (GH-17427)Miss Islington (bot)2019-12-011-0/+4
* bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400)Inada Naoki2019-11-281-2/+2
* [3.7] bpo-38862: IDLE Strip Trailing Whitespace fixes end newlines (GH-17366...Terry Jan Reedy2019-11-271-1/+2
* bpo-21063: Improve module synopsis for distutils (GH-17363) (#17381)Miss Islington (bot)2019-11-264-4/+4
* Remove use of deprecated `array.fromstring` method (GH-17332)Miss Islington (bot)2019-11-261-2/+2
* closes bpo-29275: Remove Y2K reference from time module docs (GH-17321)Miss Islington (bot)2019-11-221-10/+5
* bpo-36277: Add document for pdb debug and retval commands (GH-12872)Miss Islington (bot)2019-11-211-0/+8
* Correct the description of the 3.7 change in urllib.parse.quote (GH-17065)Miss Islington (bot)2019-11-181-1/+1
* bpo-38678: Improve argparse example in tutorial (GH-17207) (GH-17213)Miss Islington (bot)2019-11-181-1/+3
* [3.7] bpo-38738: Fix formatting of True and False. (GH-17083) (GH-17128)Serhiy Storchaka2019-11-1235-154/+154
* [3.7] bpo-38421: Update email.utils documentation (GH-16678) (GH-17121)Miss Islington (bot)2019-11-121-2/+2
* bpo-38771: Explict test for None in code example (GH-17108) (GH-17110)Miss Islington (bot)2019-11-121-1/+1