summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Expand)AuthorAgeFilesLines
* bpo-34576 warn users on security for http.server (GH-9720)Miss Islington (bot)2018-10-111-0/+8
* bpo-34901: add isolated (-I) flag to sys.flags (GH-9708)Miss Islington (bot)2018-10-071-0/+4
* bpo-34334: Don't log traceback twice in QueueHandler (GH-9537) (GH-9581)Miss Islington (bot)2018-10-071-3/+3
* Correct grammar mistake in re.rst. (GH-9745)Miss Islington (bot)2018-10-061-1/+1
* [3.7] bpo-34158: Documentation UTC offset update (GH-8377) (GH-9732)Miss Islington (bot)2018-10-061-20/+21
* [3.7] Make it clear that the msg argument to assertWarns/assertWarnsRegex/ass...Miss Islington (bot)2018-10-061-3/+3
* Clarify that AsyncExitStack works with coroutine functions (GH-9405) (GH-9408)Miss Islington (bot)2018-10-061-2/+2
* bpo-34825: Add more entries to os to pathlib reference table (GH-9608) (#9717)Miss Islington (bot)2018-10-051-20/+27
* bpo-34906: Doc: Fix typos (GH-9712)Miss Islington (bot)2018-10-053-3/+3
* Make it clear that the msg argument to assertRaises is keyword-only. (GH-9670)Miss Islington (bot)2018-10-021-1/+1
* bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)Miss Islington (bot)2018-10-021-1/+1
* bpo-34476: Document that asyncio.sleep() always suspends. (GH-9643) (#9654)Miss Islington (bot)2018-10-011-0/+3
* bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123)Miss Islington (bot)2018-09-291-5/+6
* Fix astuple in dataclasses documentation (GH-9631)Miss Islington (bot)2018-09-291-1/+1
* bpo-34802: Fix asyncio.iscoroutine() docs (GH-9611)Miss Islington (bot)2018-09-271-2/+1
* Clarify that Type[SomeTypeVar] is legal (GH-9585)Miss Islington (bot)2018-09-261-3/+6
* [3.7] asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9580)Yury Selivanov2018-09-251-5/+5
* bpo-34790: [docs] Passing coroutines to asyncio.wait() can be confusing. (GH-...Miss Islington (bot)2018-09-251-4/+36
* Fix wrong exception reference: BrokenThreadPool -> BrokenProcessPool (GH-9533)Miss Islington (bot)2018-09-251-1/+1
* [3.7] bpo-17239: Disable external entities in SAX parser (GH-9217) (GH-9511)Christian Heimes2018-09-243-2/+26
* [3.7] bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) (GH-9505)Christian Heimes2018-09-231-0/+42
* [3.7] bpo-29577: Enum: mixin classes don't mix well with already mixed Enums ...Ethan Furman2018-09-221-3/+10
* bpo-33649: Fix gather() docs; fix title; few other nits. (GH-9475) (GH-9481)Miss Islington (bot)2018-09-211-11/+15
* Make docs of exitcode for subprocess.getstatusoutput more clear. (GH-9477)Miss Islington (bot)2018-09-211-2/+3
* bpo-33649: More improvements (GH-9439)Miss Islington (bot)2018-09-202-47/+176
* bpo-34746: Fix stop -> close (GH-9437)Miss Islington (bot)2018-09-201-1/+1
* bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)Miss Islington (bot)2018-09-184-45/+127
* bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389)Miss Islington (bot)2018-09-182-2/+3
* Fix syntax error on Asyncio example in doc (GH-9387) (GH-9388)Miss Islington (bot)2018-09-181-1/+1
* Change "set_after" reference to `say_after`. (GH-9384) (GH-9386)Miss Islington (bot)2018-09-181-1/+1
* bpo-33649: Note that asyncio.run() calls shutdown_asyncgens() (GH-9380)Miss Islington (bot)2018-09-181-1/+5
* bpo-33649: Backport asyncio docs from 'master' to 3.7 (GH-9377)Yury Selivanov2018-09-1717-2963/+4294
* bpo-34717: Stop numbering stdlib titles/sections in the docs (GH-9370)Miss Islington (bot)2018-09-171-2/+3
* bpo-33216: Improve the documentation for CALL_FUNCTION_* (GH-8338) (GH-8784)Miss Islington (bot)2018-09-171-26/+34
* bpo-32933: Implement __iter__ method on mock_open() (GH-5974)Miss Islington (bot)2018-09-141-0/+4
* Fix "Python" casing in a few places (GH-9001) (GH-9313)Miss Islington (bot)2018-09-1410-12/+12
* Note that distinct argument patterns can be cached separately (GH-9298) (GH-9...Miss Islington (bot)2018-09-141-0/+5
* closes bpo-34004: Skip lock interruption tests on musl. (GH-9224)Miss Islington (bot)2018-09-121-1/+2
* [3.7] closes bpo-25041: Document AF_PACKET socket address format. (GH-9207)Benjamin Peterson2018-09-121-10/+35
* bpo-34365: Update date object documentation (GH-8814)Miss Islington (bot)2018-09-111-4/+3
* bpo-34613: document the correct value of limit argument of asyncio.StreamRead...Miss Islington (bot)2018-09-111-1/+3
* bpo-28617 Fixed docs inaccuracies about the types that support membership tes...Miss Islington (bot)2018-09-111-2/+2
* bpo-33032: Mention the implicit cache in struct.Struct() docs (GH-7700)Miss Islington (bot)2018-09-111-0/+6
* Fix missing line from example shell session (GH-9143) (GH-9155)Miss Islington (bot)2018-09-111-0/+1
* closes bpo-34525: Fix smtplib's authobject() documentation (GH-8965)Miss Islington (bot)2018-09-101-2/+2
* bpo-34246: Use no mutable default args in smtplib (GH-8554)Miss Islington (bot)2018-09-071-2/+2
* bpo-34434: Update doc for bool(), float() and int() arguments (GH-8834)Miss Islington (bot)2018-08-271-1/+9
* closes bpo-34502: Remove a note about utf8_mode from sys.exit() docs. (GH-8928)Miss Islington (bot)2018-08-251-3/+0
* Fix markup in stdtypes documentation (GH-8905)Miss Islington (bot)2018-08-251-5/+5
* Fixed typo with asynccontextmanager code example (GH-8845)Miss Islington (bot)2018-08-251-1/+1