summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* [3.10] bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632) (GH-31634)Victor Stinner2022-03-0214-49/+109
* bpo-42982: update pbkdf2 example & add another link (GH-30966) (#30968)Miss Islington (bot)2022-03-011-5/+7
* Add missing "to" to two tp_flags notes (GH-31624)Miss Islington (bot)2022-03-011-2/+2
* bpo-26897: Clarify Popen stdin, stdout, stderr file object docs (GH-30231)Miss Islington (bot)2022-02-251-14/+16
* Update dict/OrderedDict differences with code equivalents. (GH-31563)Miss Islington (bot)2022-02-251-6/+23
* bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558) ...Victor Stinner2022-02-253-17/+20
* bpo-46756: Fix authorization check in urllib.request (GH-31353)Miss Islington (bot)2022-02-253-8/+30
* bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-3...Miss Islington (bot)2022-02-251-0/+3
* bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)Miss Islington (bot)2022-02-251-89/+25
* bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535)Miss Islington (bot)2022-02-231-2/+2
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (G...Miss Islington (bot)2022-02-233-1/+5
* Minor fixes to C API docs (GH-31501)Miss Islington (bot)2022-02-234-24/+28
* bpo-46794: Bump up the libexpat version into 2.4.6 (GH-31487)Miss Islington (bot)2022-02-236-62/+133
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Miss Islington (bot)2022-02-223-1/+22
* [3.10] bpo-20923 : [doc] Explain ConfigParser 'valid section name' and .SECT...Miss Islington (bot)2022-02-221-0/+3
* [3.10] bpo-36557: Updated wording for using/windows (GH-31457) (GH-31504)Miss Islington (bot)2022-02-221-2/+2
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Miss Islington (bot)2022-02-223-0/+15
* [3.10] bpo-46732: fix __bool__ docstring (GH-31301) (GH-31473)Miss Islington (bot)2022-02-212-1/+3
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453) (GH-31472)Miss Islington (bot)2022-02-213-8/+16
* bpo-46232: Fix parsing of certs with bit string in DN (GH-30351)Miss Islington (bot)2022-02-212-7/+21
* bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31...Miss Islington (bot)2022-02-213-2/+13
* [docs] Correct typos in SSLContext.sni_callback (GH-30623) (GH-31421)Miss Islington (bot)2022-02-211-3/+3
* [3.10] bpo-43853: Expand test suite for SQLite UDF's (GH-27642) (GH-31030)Erlend Egeberg Aasland2022-02-213-66/+79
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)...Miss Islington (bot)2022-02-203-1/+17
* [3.10] replace `self` param with more appropriate `cls` in classmethods (GH-3...Andrew Svetlov2022-02-201-2/+2
* [3.10] Raise TypeError if SSLSocket is passed to asyncio transport-based meth...Andrew Svetlov2022-02-203-10/+22
* Improve discussion about how __getattr__ is invoked. (GH-31435) (GH-31437)Miss Islington (bot)2022-02-201-9/+7
* Counter doc mentions three methods, but lists four (GH-30706)Miss Islington (bot)2022-02-191-1/+1
* bpo-46603: improve coverage of `typing._strip_annotations` (GH-31063)Miss Islington (bot)2022-02-191-0/+9
* [3.10] bpo-46784: Add newly exported expat symbols to the namespace. (GH-3139...Gregory P. Smith2022-02-192-0/+6
* bpo-46777: Fix incorrect use of directives in asyncio documentation (GH-31388)Miss Islington (bot)2022-02-187-181/+82
* docs: Link `match` statement in tutorial (GH-31396)Miss Islington (bot)2022-02-181-1/+1
* Fix mistake in barry_as_FLUFL test (GH-31392)Miss Islington (bot)2022-02-181-1/+1
* bpo-46400: Update libexpat from 2.4.1 to 2.4.4 (GH-31022) (GH-31296)Dong-hee Na2022-02-176-31/+238
* [3.10] Update html.parser.rst (GH-30678) (GH-31385)Miss Islington (bot)2022-02-171-1/+1
* [3.10] Become a CODEOWNER for typing (GH-31374) (GH-31382)Miss Islington (bot)2022-02-171-1/+1
* [3.10] bpo-46333: Honor `module` parameter in ForwardRef (GH-30536) (GH-31379)Miss Islington (bot)2022-02-174-2/+20
* [3.10] bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326) (GH-...Mark Shannon2022-02-166-14/+47
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Miss Islington (bot)2022-02-163-10/+14
* Update the OMG link (GH-30383)Miss Islington (bot)2022-02-151-1/+1
* bpo-46741: Update `asyncio.protocols.BufferedProtocol` docstring (GH-31327) (...Miss Islington (bot)2022-02-151-4/+0
* [3.10] bpo-46728: fix docstring of combinations_with_replacement for consiste...DongGeon Lee2022-02-152-4/+4
* bpo-46436: Fix command-line option -d/--directory in module http.server (GH-3...Miss Islington (bot)2022-02-142-13/+17
* Fix the signature of multiprocessing.set_executable (GH-31276) Miss Islington (bot)2022-02-141-2/+2
* Update __main__.rst (GH-30896) Miss Islington (bot)2022-02-141-1/+1
* doc: use colon for all color's rangs (GH-28998) (#31336)Miss Islington (bot)2022-02-141-2/+2
* bpo-38619: Update the documentation for UUID.hex (GH-29830)Miss Islington (bot)2022-02-141-1/+1
* Fix minor grammar error (GH-31325)Miss Islington (bot)2022-02-141-1/+1
* Fix a typo in Doc/faq/programming.rst (GH-31243)Miss Islington (bot)2022-02-141-1/+1
* [3.10] bpo-46747: Add missing key parameters in the bisect docs (GH-31323) (G...Dennis Sweeney2022-02-141-2/+2