aboutsummaryrefslogtreecommitdiff
path: root/Doc
Commit message (Expand)AuthorAgeFilesLines
* bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)HEADmasterErlend Egeberg Aasland2021-02-161-2/+2
* Add a warning block around the get_referrers() documentation (GH-24511)Pablo Galindo2021-02-151-4/+5
* bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536)Ken Jin2021-02-154-12/+18
* bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)Erlend Egeberg Aasland2021-02-151-2/+2
* bpo-42967: only use '&' as a query string separator (#24297)Adam Goldschmidt2021-02-147-6/+86
* bpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505)Zackery Spytz2021-02-121-2/+3
* bpo-43172: readline now passes its tests when built against libedit (GH-24499)Gregory P. Smith2021-02-121-1/+3
* Fix link to sqlite3 enable_shared_cache documentation (GH-24496)Tom Forbes2021-02-101-1/+1
* bpo-41824: Add versionadded for typing.ForwardRef docs (#24224)Ken Jin2021-02-081-0/+2
* Improve docs of PEP 604 Union (#24301)Ken Jin2021-02-083-19/+20
* bpo-43147: Remove archaic terminology. (GH-24462)Raymond Hettinger2021-02-071-6/+5
* bpo-16781: In 'exec' doc, add 'nonlocal' to 'yield' and 'return' (GH-2446)Terry Jan Reedy2021-02-071-1/+2
* Simple typo fix (GH-24448)Andrew Tennikoff2021-02-051-1/+1
* Minor readability improvements. Also note performance impact of __slots__. (...Raymond Hettinger2021-02-041-8/+11
* bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428)Dong-hee Na2021-02-042-0/+14
* Merge tag 'v3.10.0a5'Pablo Galindo2021-02-031-1/+1
|\
| * Fix Sphynx syntax in the memory.rst documentv3.10.0a5Pablo Galindo2021-02-021-1/+1
* | bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394)diegoe2021-02-021-1/+1
* | Add link to Microsoft docs for limitations in Windows Store package (GH-24422)Steve Dower2021-02-031-0/+5
* | bpo-8264: Document hasattr and getattr behavior for private attributes (GH-23...Ken Jin2021-02-022-0/+16
|/
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-0/+6
* bpo-38307: Add end_lineno attribute to pyclbr Objects (GH-24348)Aviral Srivastava2021-02-011-0/+8
* bpo-42927: Update the What's new entry for LOAD_ATTR optimizations (GH-24383)Pablo Galindo2021-01-311-4/+4
* Doc: errors tutorial improvements (GH-16269)Adorilson Bezerra2021-01-301-21/+21
* bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364)L2021-01-311-4/+0
* bpo-43047: logging.config formatters documentation update (GH-24358)Ian Wienand2021-01-301-19/+23
* bpo-41282: Add deprecation warning and docs for distutils (PEP 632) (GH-24355)Steve Dower2021-01-294-0/+35
* Fixing typos in turtle.rst (GH-24376)Jules Lasne2021-01-291-6/+6
* Fixed typo in turtle.rst (GH-24371)Jules Lasne2021-01-291-1/+1
* bpo-42955: Remove sub-packages from sys.stdlib_module_names (GH-24353)Victor Stinner2021-01-281-3/+4
* bpo-43008: Make IDLE respect sys.excepthook (GH-24302)Ken2021-01-261-1/+1
* bpo-33387: update documentation for exception handling opcode changes (GH-24334)Irit Katriel2021-01-261-1/+1
* Fix minor typo in the rest format in the enum docs (GH-24335)Pablo Galindo2021-01-251-1/+1
* Document new parenthesized with statements (GH-24281)Pablo Galindo2021-01-252-1/+67
* bpo-38250: [Enum] single-bit flags are canonical (GH-24215)Ethan Furman2021-01-251-27/+135
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-252-20/+20
* bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)Serhiy Storchaka2021-01-252-2/+7
* bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)Julien Palard2021-01-2510-47/+29
* bpo-42955: Fix sys.module_names doc (GH-24329)Victor Stinner2021-01-251-1/+1
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-252-1/+25
* bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)Serhiy Storchaka2021-01-251-2/+6
* bpo-42996: Update a reference to PKCS #5 in hashlib docs to version 2.1 (GH-2...Illia Volochii2021-01-221-2/+2
* bpo-40304: Correct type(name, bases, dict) doc (GH-19553)Борис Верховский2021-01-221-8/+9
* Add a What's New entry for the new parser error improvements (GH-24280)Pablo Galindo2021-01-211-0/+42
* Fix typo in what's new. bidst_wheel -> bdist_wheel (GH-24234)ravcio2021-01-211-1/+1
* bpo-42392: Mention loop removal in whatsnew for 3.10 (GH-24256)Ken Jin2021-01-201-0/+37
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2021-01-202-3/+15
* Fix typos in unittest documentation (GH-24194)Conchylicultor2021-01-201-3/+3
* bpo-42048: Clinic Howto: Document AC's defining_class converter (GH-23978)Erlend Egeberg Aasland2021-01-201-0/+62
* Doc: os.path.abspath and Path.resolve are also different (GH-23276)Hong Xu2021-01-201-5/+12