summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782)Victor Stinner2019-04-111-2/+9
| | | | | Modify CLEANBYTE, DEADDYTE and FORBIDDENBYTE constants: use 0xCD, 0xDD and 0xFD, rather than 0xCB, 0xBB and 0xFB, to use the same byte patterns than Windows CRT debug malloc() and free().
* bpo-36597: fix weakref example code (GH-12779)Inada Naoki2019-04-111-5/+8
| | | | | Commit 57b1a2862 fixed doctest, but example code is not match with document. Just skip doctest for the block.
* bpo-36597: fix random doctest failure (GH-12776)Inada Naoki2019-04-111-1/+1
|
* bpo-36416: Correct bytes.rpartition documentation (GH-12543)pewscorner2019-04-111-2/+2
|
* better __init__.py explanation in tutorial (#12763)Inada Naoki2019-04-111-3/+3
| | | | | | | | * better __init__.py explanation in tutorial * Update Doc/tutorial/modules.rst Co-Authored-By: methane <songofacandy@gmail.com>
* Doc: fix typo in IncrementalDecoder.setstate (GH-12724)Christopher Thorne2019-04-111-1/+1
|
* fix typo in doc (#12686)Caleb Marchent2019-04-101-2/+2
|
* bpo-14826: document that URLopener quotes fullurl. (GH-12758)Gregory P. Smith2019-04-101-0/+1
|
* bpo-31512: Add non-elevated symlink support for Windows (GH-3652)Vidar Tonaas Fauske2019-04-091-8/+7
|
* bpo-33456: site module documentation - fix wrong default for key in ↵Lukas Waymann2019-04-091-3/+3
| | | | pyvenv.cfg (GH-6755)
* bpo-33461: emit DeprecationWarning when json.loads(encoding=...) is used ↵Matthias Bussonnier2019-04-091-2/+5
| | | | (GH-6762)
* closes bpo-35848: Move all documentation regarding the readinto out of ↵Steve Palmer2019-04-091-8/+6
| | | | | | | IOBase. (GH-11893) Move all documentation regarding the readinto method into either io.RawIOBase or io.BufferedIOBase. Corresponding changes to documentation in the _pyio.py module.
* BPO-17561: set create_server backlog default to None (GH-12735)Giampaolo Rodola2019-04-091-1/+1
| | | | | | | | | It turns out doing socket.listen(0) does not equal to "choose a reasonable default". It actually means "set backlog to 0". As such set backlog=None as the default for socket.create_server. Fixes the following BB failures: https://github.com/python/cpython/pull/11784#issuecomment-481036369 Ref. BPO-1756, GH-11784.
* bpo-35934: Add socket.create_server() utility function (GH-11784)Giampaolo Rodola2019-04-082-1/+53
|
* Add a What's New entry for bpo-35459. (GH-12706)Serhiy Storchaka2019-04-081-0/+5
|
* Correct "inplace" with "in-place" (GH-10480)Andre Delfino2019-04-082-5/+5
|
* bpo-27181: Add statistics.geometric_mean() (GH-12638)Raymond Hettinger2019-04-072-0/+22
|
* bpo-30661: Improve docs for tarfile pax change and effect on shutil (GH-12635)CAM Gerlach2019-04-073-12/+22
| | | | The shutil archive creation helpers use the default tarfile format, so that API is also switching to use `pax` by default.
* bpo-9883: Update list of unimplemented interfaces in minidom. (GH-12677)Stefan Behnel2019-04-061-14/+0
| | | | Remove names from the "unimplemented interfaces" list in the minidom docs that are actually implemented.
* Fix doc for create_subprocess_exec (GH-12598)Dima Tisnek2019-04-051-1/+1
| | | Add missing `program` argument to asyncio.create_subprocess_exec documentation.
* bpo-25451: Add transparency methods to tkinter.PhotoImage. (GH-10406)Zackery Spytz2019-04-051-0/+5
|
* bpo-36404: recommend DeprecationWarning over PendingDeprecationWarning ↵Inada Naoki2019-04-052-5/+13
| | | | (GH-12505)
* bpo-32413: Add documentation that at the module level, locals(), globals() ↵Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2019-04-021-1/+2
| | | | | are the same dictionary (GH-5004) https://bugs.python.org/issue32413
* bpo-35838: document optionxform must be idempotent (GH-12656)Inada Naoki2019-04-021-0/+6
|
* bpo-36377: Specify that range() can not be compared (GH-12468)Emmanuel Arias2019-04-021-12/+11
|
* bpo-36157:Document PyInterpreterState_Main() (GH-12238)Joannah Nanjekye2019-04-011-0/+5
| | | | | | | I have added documentation for `PyInterpreterState_Main()`. I chose to place it under Advanced Debugger Support together with similar functions like `PyInterpreterState_Head()`, `PyInterpreterState_Next(`), and `PyInterpreterState_ThreadHead()` . https://bugs.python.org/issue36157
* bpo-20844: open script file with "rb" mode (GH-12616)Inada Naoki2019-04-011-0/+4
|
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-0/+23
| | | | | | | | | | | | | | | | | | | | | | Deprecated passing the following arguments as keyword arguments: - "func" in functools.partialmethod(), weakref.finalize(), profile.Profile.runcall(), cProfile.Profile.runcall(), bdb.Bdb.runcall(), trace.Trace.runfunc() and curses.wrapper(). - "function" in unittest.addModuleCleanup() and unittest.TestCase.addCleanup(). - "fn" in the submit() method of concurrent.futures.ThreadPoolExecutor and concurrent.futures.ProcessPoolExecutor. - "callback" in contextlib.ExitStack.callback(), contextlib.AsyncExitStack.callback() and contextlib.AsyncExitStack.push_async_callback(). - "c" and "typeid" in the create() method of multiprocessing.managers.Server and multiprocessing.managers.SharedMemoryServer. - "obj" in weakref.finalize(). Also allowed to pass arbitrary keyword arguments (even "self" and "func") if the above arguments are passed as positional argument.
* bpo-36085: Add installer check for KB2533625 (GH-12636)Steve Dower2019-03-311-1/+3
|
* C API docs: Py_IsInitialized is always safe to call (GH-12630)Nick Coghlan2019-03-301-0/+1
|
* bpo-17110: doc: add note how to get bytes from sys.argv (GH-12602)Inada Naoki2019-03-301-0/+6
|
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-293-3/+74
|
* bpo-36064: Clarify allowed data types for urllib.request.Request. (GH-11990)Julien Palard2019-03-291-2/+2
|
* bpo-33043: Add a Contributing to Docs link and Update the Found a Bug Page ↵Susan Su2019-03-292-1/+10
| | | | | | | | | | | | | | | | (#12006) * changes to html file -> added contributing to docs link at the end of the page * revisions to the dealing with bugs page. added more links in the documentation bugs section * 📜🤖 Added by blurb_it. * Update Doc/bugs.rst Updated Doc/bugs.rst in accordance with willingc and JulienPalard suggestions. Co-Authored-By: suhearsawho <susansu.software@gmail.com>
* Fixed capital letters missing and missing . (GH-12584)Jules Lasne (jlasne)2019-03-281-6/+6
| | | No `bpo` for minor doc fix
* Fix typo in email.encoders doc (GH-9700)ksamuel2019-03-281-1/+1
| | | Make the encoding/encoders mention congruent.
* bpo-36425: Add Simplified Chinese to the language switcher (GH-12537)zhsj2019-03-281-0/+1
|
* Revert "Minor doc improvement (GH-10341)" (GH-12597)Raymond Hettinger2019-03-282-3/+3
| | | This reverts commit dfd775a0b1aee51d842b20cdebd97cc52c0b32e7.
* bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)Eddie Elizondo2019-03-271-0/+67
| | | | | * Incref heap-allocated types in PyObject_Init * Add documentation and porting notes to What's New
* Doc: Fixed missing punctuation in datamodel.rst (GH-12581)Jules Lasne (jlasne)2019-03-271-14/+14
|
* bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580)Inada Naoki2019-03-271-0/+3
|
* bpo-33832: Add "magic method" glossary entry (GH-7630)Andre Delfino2019-03-271-0/+7
|
* Minor doc improvement (GH-10341)Andre Delfino2019-03-272-3/+3
| | | Change "star-operator" to "* operator".
* bpo-34203: FAQ: improve wording of paragraph about 2.x vs. 3.x (GH-9821)Tal Einat2019-03-261-8/+4
|
* bpo-36364: fix SharedMemoryManager examples (GH-12439)Pierre Glaser2019-03-261-3/+4
| | | Examples of the `multiprocessing.shared_memory` module try to import `SharedMemoryManager` from `multiprocessing.shared_memory` whereas this class is defined in `multiprocessing.managers`.
* Document that logging registers shutdown as an atexit handler (GH-12378)Andre Delfino2019-03-261-0/+4
|
* Fix "the the" in the idle docs. (GH-12549)Benjamin Peterson2019-03-261-13/+11
|
* bpo-34085: Improve wording on classmethod/staticmethod (#8228)Andre Delfino2019-03-251-12/+10
| | | | | | | | * bpo-34085: Improve wording on classmethod/staticmethod * Address comments from Éric * Address comments from Éric
* bpo-36345: Add a new example in the documentation of wsgiref (#12511)Stéphane Wirtel2019-03-251-0/+32
|
* bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-251-0/+14
|