summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653)Jelle Zijlstra2017-03-131-2/+2
|
* bpo-29756: Improve documentation for list methods that compare items by ↵Xiang Zhang2017-03-132-3/+3
| | | | | | equality (GH-572)
* bpo-28692: Deprecate using non-integer value for selecting a plural form in ↵Serhiy Storchaka2017-03-121-0/+4
| | | | gettext. (#507)
* bpo-29746: Update marshal docs to Python 3. (#547)Serhiy Storchaka2017-03-123-15/+19
|
* bpo-26121: Use C library implementation for math functions: (#515)Serhiy Storchaka2017-03-111-0/+5
| | | | | | | * bpo-26121: Use C library implementation for math functions: tgamma(), lgamma(), erf() and erfc(). * Don't use tgamma() and lgamma() from libc on OS X.
* tempfile.rst: Fix some typos (GH-610)Jelle Zijlstra2017-03-111-2/+2
|
* bpo-29770: remove outdated PYO related info (GH-590)Xiang Zhang2017-03-114-7/+7
|
* bpo-29784: Fix the reference to shutil.copy in the docs (GH-602)Mariatta2017-03-111-2/+2
|
* bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250)Ivan Levkivskyi2017-03-101-31/+40
|
* bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239)Ivan Levkivskyi2017-03-101-4/+15
|
* bpo-28739: Document that f-strings cannot be used as docstring (GH-592)Mariatta2017-03-101-0/+11
|
* bpo-28231: The zipfile module now accepts path-like objects for external ↵Serhiy Storchaka2017-03-081-2/+22
| | | | paths. (#511)
* bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)INADA Naoki2017-03-082-2/+18
|
* bpo-28230: Document the pathlib support in tarfile and add tests. (#512)Serhiy Storchaka2017-03-081-4/+24
|
* bpo-28682: Added support for bytes paths in os.fwalk(). (#489)Serhiy Storchaka2017-03-072-0/+9
|
* bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() ↵Serhiy Storchaka2017-03-061-5/+4
| | | | and tuple(). (#518)
* bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494)INADA Naoki2017-03-061-2/+0
|
* bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)Serhiy Storchaka2017-03-051-0/+5
| | | | int(), bool(), float(), list() and tuple(). Specify the value as a positional argument instead.
* Docs: Add note regarding "reversed" flag in heapq.merge (#300)Adam Niederer2017-03-051-1/+3
| | | | | | | The docs for `heapq.merge` are a little misleading. Iterables passed into heapq.merge with the reversed flag enabled must be sorted from largest to smallest to achieve the desired sorting effect, but the previous paragraph states that they should be sorted from smallest to largest.
* distutils docs: Fix a typo (GH-470)Mariatta2017-03-051-1/+1
| | | instanciated -> instantiated
* Correct spelling "instanciate" (#465)J. W2017-03-041-2/+2
|
* bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (#238)Ivan Levkivskyi2017-03-031-2/+53
|
* bpo-29709: Improve Boolean Operations documentation (#433)Mariatta2017-03-031-2/+2
| | | Change False into false, and True into true.
* bpo-29455: Mention coverage.py in trace module documentation (#261)Marco Buttu2017-03-031-0/+6
|
* bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)David Ellis2017-03-031-7/+13
|
* Add Python version since deprecation in base64 methods. (#33)Matthias Bussonnier2017-03-021-4/+13
| | | | | | Allow developers to not have to either test on N Python versions or looked through multiple versions of the docs to know whether they can easily update.
* bpo-27200: fix configparser, copyreg and ctypes doctests (#240)Marco Buttu2017-03-023-15/+22
|
* In SSL module version examples, don't use a legacy version. (#381)Alex Gaynor2017-03-021-4/+4
|
* email.compat32-message.rst: Fix typo in the word `message` (GH-379)Mariatta2017-03-011-3/+3
|
* Tweak subprocess.STARTUPINFO documentation (#347)Berker Peksag2017-03-011-5/+7
| | | | * Document STARTUPINFO constructor * Move versionchanged directive to above of attributes
* Fixed a handful of typos (GH-343)Alex Gaynor2017-03-014-7/+7
|
* correct documentation for enum.html (#358)Kartik Anand2017-02-281-2/+2
|
* bpo-7769: enable xmlrpc.server.SimpleXMLRPCDispatcher.register_function used ↵Xiang Zhang2017-02-282-13/+63
| | | | as decorator (GH-231)
* bpo-24241: Add versionchanged directive to the documentation (#342)Berker Peksag2017-02-271-1/+4
|
* Use "Contributed by ..." style in whatsnew/3.7.rst (#339)Berker Peksag2017-02-271-1/+2
|
* Asyncio documentation: remove `self` from method signatures (GH-334)Mariatta2017-02-271-3/+3
|
* fix minor bug in pymalloc. (#335)INADA Naoki2017-02-271-1/+1
| | | reported by Alexis Lopez-Garcia.
* bpo-29662: fix wrong indentation in timeit.Timer's doc (GH-332)Xiang Zhang2017-02-271-10/+10
|
* bpo-26184: import.rst: Improve versionchanged note (GH-325)Mariatta2017-02-261-1/+1
|
* bpo-28624: Add a test that checks that cwd parameter of Popen() accepts ↵Sayan Chowdhury2017-02-261-3/+7
| | | | PathLike objects (#157)
* bpo-26184: import.rst: Improve versionchanged note (GH-277)Mariatta2017-02-261-2/+5
| | | | Mention that an ImportError is raised when exec_module() is defined, but create_module() is not.
* bpo-29121: Remove outdated documentation about transactions (#313)Berker Peksag2017-02-261-8/+3
| | | | Patch by Aviv Palivoda.
* bpo-22594: Add a link to the regex module in re documentation (GH-241)Marco Buttu2017-02-261-0/+6
|
* bpo-29648: import.rst: Add reference to create_module() (GH-290)Marco Buttu2017-02-261-1/+1
| | | Add a reference to create_module(), in the first versionadded of section Loaders.
* Fix small typos in introduction and datastructures of tutorial (GH-272)Jim Fasarakis-Hilliard2017-02-252-5/+5
| | | | | * Fix small typos in introduction and datastructures * Use iterable instead of L in the doc for list.extend
* bpo-26128: Added __init__to subprocess.STARTUPINFO (#171)Subhendu Ghosh2017-02-251-1/+4
| | | | | | | The Windows-specific subprocess.STARTUPINFO class now accepts keyword-only arguments to its constructor to set the various data attributes. Patch by Subhendu Ghosh.
* bpo-16285: Update urllib quoting to RFC 3986 (#173)Ratnadeep Debnath2017-02-252-1/+12
| | | | | | | | | | * bpo-16285: Update urllib quoting to RFC 3986 urllib.parse.quote is now based on RFC 3986, and hence includes `'~'` in the set of characters that is not escaped by default. Patch by Christian Theune and Ratnadeep Debnath.
* bpo-24241: Improve preferred webbrowser handling (#85)David Steele2017-02-251-4/+6
| | | | | | | | | | | | | | | | | | - Add 'preferred' argument to webbrowser.register - Use xdg-settings to specify preferred X browser The first change replaces the existing undocumented tri-state 'try_order' parameter with the documented boolean keyword-only 'preferred' parameter. Setting it to True places the browser at the front of the list, preferring it as the return to a subsequent get() call. The second change adds a private `_os_preferred_browser` setting and then uses that to make the default browser reported by `xdg-settings` first in the try list when running under X (or another environment that sets the `DISPLAY` variable). This avoids the problem where the first entry in the tryorder queue otherwise defaults to xdg-open, which doesn't support the "new window" option.
* Fix small typos in expressions.rst (GH-276)Jim Fasarakis-Hilliard2017-02-241-2/+2
|
* bpo-25008: Deprecate smtpd and point to aiosmtpd (#274)Barry Warsaw2017-02-241-0/+6
| | | | | | * bpo-25008: Deprecate smtpd and point to aiosmtpd. * Simplify the aiosmtpd URL.