summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-082-13/+13
| | | | Thanks to Oren Milman for the patch.
* Issue #27285: Document the deprecation of the pyvenv script.Brett Cannon2016-07-087-186/+220
| | | | | | | | | As part of the update, the documentation was updated to normalize around the term "virtual environment" instead of relying too heavily on "venv" for the same meaning and leading to inconsistent usage of either. Thanks to Steve Piercy for the patch.
* Issue #21708: Deprecated dbm.dumb behavior that differs from common dbmSerhiy Storchaka2016-07-062-0/+9
| | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode.
* Merge from 3.5Berker Peksag2016-07-051-0/+1
|\
| * Add versionadded to PyDict_SetDefault documentationBerker Peksag2016-07-051-0/+1
| | | | | | | | It was added for Python 3.4 in a0b750ea3397.
* | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-032-0/+15
| | | | | | | | | | | | SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled using the "-X showalloccount" option. It now outputs to stderr instead of stdout.
* | Issue #27431: Merge from 3.5Berker Peksag2016-07-011-1/+1
|\ \ | |/
| * Issue #27431: Update default protocol version in shelve.Shelf() documentationBerker Peksag2016-07-011-1/+1
| | | | | | | | shelve.open() documentation was updated in f351fb7ea179.
* | Issue #27430: Merge from 3.5Berker Peksag2016-07-011-1/+1
|\ \ | |/
| * Issue #27430: Fix typos, patch by scop.Berker Peksag2016-07-011-1/+1
| |
* | Fix typo in whatsnew/3.6.rstBerker Peksag2016-07-011-1/+1
| |
* | Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-22/+26
|\ \ | |/ | | | | Based on patch by Gabriel Genellina.
| * Issue #4945: Improved the documenting of boolean arguments in the json module.Serhiy Storchaka2016-06-301-22/+26
| | | | | | | | Based on patch by Gabriel Genellina.
* | Merge 3.5 (copy doc)Victor Stinner2016-06-301-1/+1
|\ \ | |/
| * Issue #27416: clarify copy docVictor Stinner2016-06-301-1/+1
| | | | | | | | Patch written by R. David Murray.
* | Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBaseMartin Panter2016-06-293-2/+20
| |
* | Fix issue #27402: example for typing did not type-check. (Merge 3.5->3.6)Guido van Rossum2016-06-281-2/+2
|\ \ | |/
| * Fix issue #27402: example for typing did not type-check.Guido van Rossum2016-06-281-2/+2
| |
* | Issue #27393: Merge from 3.5Berker Peksag2016-06-271-2/+2
|\ \ | |/
| * Issue #27393: Fix escaping of C:\ tooBerker Peksag2016-06-271-2/+2
| |
* | Issue #27393: Merge from 3.5Berker Peksag2016-06-271-2/+2
|\ \ | |/
| * Issue #27393: Fix escaping of venv activate commands on WindowsBerker Peksag2016-06-271-2/+2
| | | | | | | | Patch by Manuel Kaufmann.
| * Remove a stale reference to pathlib.PurePath.pathBrett Cannon2016-06-241-3/+2
| |
* | Issue #22115: Added methods trace_add, trace_remove and trace_info in theSerhiy Storchaka2016-06-261-0/+13
| | | | | | | | | | | | tkinter.Variable class. They replace old methods trace_variable, trace, trace_vdelete and trace_vinfo that use obsolete Tcl commands and might not work in future versions of Tcl.
* | Issue #26243: Correct a wording in docs.Serhiy Storchaka2016-06-251-1/+1
| | | | | | | | Thanks Berker.
* | Issue #26243: Only the level argument to zlib.compress() is keyword argumentSerhiy Storchaka2016-06-251-1/+1
| | | | | | | | now. The first argument is positional-only.
* | Issue #26186: Remove the restriction that built-in and extensionBrett Cannon2016-06-252-14/+37
| | | | | | | | | | | | | | | | modules can't be lazily loaded. Thanks to Python 3.6 allowing for types.ModuleType to have its __class__ mutated, the restriction can be lifted by calling create_module() on the wrapped loader.
* | Issue #27038: Expose DirEntry as os.DirEntry.Brett Cannon2016-06-241-24/+26
| | | | | | | | Thanks to Jelle Zijlstra for the code portion of the patch.
* | Issue #27186: Define what a "path-like object" is.Brett Cannon2016-06-242-7/+19
| | | | | | | | Thanks to Dusty Phillips for the initial patch.
* | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-242-8/+11
| | | | | | | | | | | | | | type of __fspath__(). As part of this change, also make sure that the pure Python implementation of os.fspath() is tested.
* | Issue #27381: Merge from 3.5Berker Peksag2016-06-241-1/+1
|\ \ | |/
| * Issue #27381: Remove superfluous paren in zipfile documentationBerker Peksag2016-06-241-1/+1
| |
* | Issue #26547: Merge from 3.5Berker Peksag2016-06-241-1/+1
|\ \ | |/
| * Issue #26547: Remove outdated term dictproxy from vars() documentationBerker Peksag2016-06-241-1/+1
| | | | | | | | | | | | | | dictproxy was used in Python 2 and it was renamed to mappingproxy in Python 3.3. Patch by Julien.
* | Issue #27378: Merge from 3.5Berker Peksag2016-06-241-3/+1
|\ \ | |/
| * Issue #27378: Remove an outdated reference from regex HOWTOBerker Peksag2016-06-241-3/+1
| | | | | | | | Patch by Matt Morrison.
* | Merge with 3.5Terry Jan Reedy2016-06-233-1/+31
|\ \ | |/
| * Issue #27304: Source code links for sub-packages in the same file.Terry Jan Reedy2016-06-233-1/+31
| | | | | | | | Patch by Yoni Lavi
* | merge 3.5Benjamin Peterson2016-06-221-2/+2
|\ \ | |/
| * alter header; '%' really throws latex through a loopBenjamin Peterson2016-06-221-2/+2
| |
* | Issue #18726: All optional parameters of the dump(), dumps(),Serhiy Storchaka2016-06-212-6/+26
| | | | | | | | | | load() and loads() functions and JSONEncoder and JSONDecoder class constructors in the json module are now keyword-only.
* | Fix “allow(s) to”Martin Panter2016-06-201-1/+1
| |
* | Merge spelling fixes from 3.5Martin Panter2016-06-201-1/+1
|\ \ | |/
| * Fix spelling errors in code commentsMartin Panter2016-06-201-1/+1
| |
* | Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-181-2/+2
|\ \ | |/ | | | | represented as a compination of known flags.
| * Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-181-2/+2
| | | | | | | | represented as a compination of known flags.
* | [merge from 3.5] - issue27021 - Document SC_IOV_MAX limitation imposed by OS ↵Senthil Kumaran2016-06-181-1/+5
|\ \ | |/ | | | | | | | | on os.writev. Patch contributed Марк Коренберг.
| * issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev.Senthil Kumaran2016-06-181-1/+5
| | | | | | | | Patch contributed Марк Коренберг.
* | Issue #24314: Merge doc links from 3.5Martin Panter2016-06-1814-64/+69
|\ \ | |/
| * Issue #24314: Fix doc links for general attributes like __name__, __dict__Martin Panter2016-06-1814-64/+69
| |