Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-29770: remove outdated PYO related info (GH-590) | Xiang Zhang | 2017-03-11 | 4 | -7/+7 |
| | |||||
* | bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) | Mariatta | 2017-03-11 | 1 | -2/+2 |
| | |||||
* | bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250) | Ivan Levkivskyi | 2017-03-10 | 1 | -31/+40 |
| | |||||
* | bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239) | Ivan Levkivskyi | 2017-03-10 | 1 | -4/+15 |
| | |||||
* | bpo-28739: Document that f-strings cannot be used as docstring (GH-592) | Mariatta | 2017-03-10 | 1 | -0/+11 |
| | |||||
* | bpo-28231: The zipfile module now accepts path-like objects for external ↵ | Serhiy Storchaka | 2017-03-08 | 1 | -2/+22 |
| | | | | paths. (#511) | ||||
* | bpo-28331: fix impl-detail label is removed when content is translated. (GH-195) | INADA Naoki | 2017-03-08 | 2 | -2/+18 |
| | |||||
* | bpo-28230: Document the pathlib support in tarfile and add tests. (#512) | Serhiy Storchaka | 2017-03-08 | 1 | -4/+24 |
| | |||||
* | bpo-28682: Added support for bytes paths in os.fwalk(). (#489) | Serhiy Storchaka | 2017-03-07 | 2 | -0/+9 |
| | |||||
* | bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() ↵ | Serhiy Storchaka | 2017-03-06 | 1 | -5/+4 |
| | | | | and tuple(). (#518) | ||||
* | bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494) | INADA Naoki | 2017-03-06 | 1 | -2/+0 |
| | |||||
* | bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) | Serhiy Storchaka | 2017-03-05 | 1 | -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 Niederer | 2017-03-05 | 1 | -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) | Mariatta | 2017-03-05 | 1 | -1/+1 |
| | | | instanciated -> instantiated | ||||
* | Correct spelling "instanciate" (#465) | J. W | 2017-03-04 | 1 | -2/+2 |
| | |||||
* | bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (#238) | Ivan Levkivskyi | 2017-03-03 | 1 | -2/+53 |
| | |||||
* | bpo-29709: Improve Boolean Operations documentation (#433) | Mariatta | 2017-03-03 | 1 | -2/+2 |
| | | | Change False into false, and True into true. | ||||
* | bpo-29455: Mention coverage.py in trace module documentation (#261) | Marco Buttu | 2017-03-03 | 1 | -0/+6 |
| | |||||
* | bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) | David Ellis | 2017-03-03 | 1 | -7/+13 |
| | |||||
* | Add Python version since deprecation in base64 methods. (#33) | Matthias Bussonnier | 2017-03-02 | 1 | -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 Buttu | 2017-03-02 | 3 | -15/+22 |
| | |||||
* | In SSL module version examples, don't use a legacy version. (#381) | Alex Gaynor | 2017-03-02 | 1 | -4/+4 |
| | |||||
* | email.compat32-message.rst: Fix typo in the word `message` (GH-379) | Mariatta | 2017-03-01 | 1 | -3/+3 |
| | |||||
* | Tweak subprocess.STARTUPINFO documentation (#347) | Berker Peksag | 2017-03-01 | 1 | -5/+7 |
| | | | | * Document STARTUPINFO constructor * Move versionchanged directive to above of attributes | ||||
* | Fixed a handful of typos (GH-343) | Alex Gaynor | 2017-03-01 | 4 | -7/+7 |
| | |||||
* | correct documentation for enum.html (#358) | Kartik Anand | 2017-02-28 | 1 | -2/+2 |
| | |||||
* | bpo-7769: enable xmlrpc.server.SimpleXMLRPCDispatcher.register_function used ↵ | Xiang Zhang | 2017-02-28 | 2 | -13/+63 |
| | | | | as decorator (GH-231) | ||||
* | bpo-24241: Add versionchanged directive to the documentation (#342) | Berker Peksag | 2017-02-27 | 1 | -1/+4 |
| | |||||
* | Use "Contributed by ..." style in whatsnew/3.7.rst (#339) | Berker Peksag | 2017-02-27 | 1 | -1/+2 |
| | |||||
* | Asyncio documentation: remove `self` from method signatures (GH-334) | Mariatta | 2017-02-27 | 1 | -3/+3 |
| | |||||
* | fix minor bug in pymalloc. (#335) | INADA Naoki | 2017-02-27 | 1 | -1/+1 |
| | | | reported by Alexis Lopez-Garcia. | ||||
* | bpo-29662: fix wrong indentation in timeit.Timer's doc (GH-332) | Xiang Zhang | 2017-02-27 | 1 | -10/+10 |
| | |||||
* | bpo-26184: import.rst: Improve versionchanged note (GH-325) | Mariatta | 2017-02-26 | 1 | -1/+1 |
| | |||||
* | bpo-28624: Add a test that checks that cwd parameter of Popen() accepts ↵ | Sayan Chowdhury | 2017-02-26 | 1 | -3/+7 |
| | | | | PathLike objects (#157) | ||||
* | bpo-26184: import.rst: Improve versionchanged note (GH-277) | Mariatta | 2017-02-26 | 1 | -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 Peksag | 2017-02-26 | 1 | -8/+3 |
| | | | | Patch by Aviv Palivoda. | ||||
* | bpo-22594: Add a link to the regex module in re documentation (GH-241) | Marco Buttu | 2017-02-26 | 1 | -0/+6 |
| | |||||
* | bpo-29648: import.rst: Add reference to create_module() (GH-290) | Marco Buttu | 2017-02-26 | 1 | -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-Hilliard | 2017-02-25 | 2 | -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 Ghosh | 2017-02-25 | 1 | -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 Debnath | 2017-02-25 | 2 | -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 Steele | 2017-02-25 | 1 | -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-Hilliard | 2017-02-24 | 1 | -2/+2 |
| | |||||
* | bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) | Barry Warsaw | 2017-02-24 | 1 | -0/+6 |
| | | | | | | * bpo-25008: Deprecate smtpd and point to aiosmtpd. * Simplify the aiosmtpd URL. | ||||
* | bpo-28911: Clarify the behaviour of assert_called_once_with. (#251) | Arne de Laat | 2017-02-23 | 1 | -5/+6 |
| | |||||
* | bpo-29463: Add docstring field to some AST nodes. (#46) | INADA Naoki | 2017-02-22 | 2 | -3/+17 |
| | | | | | | | | | | | * bpo-29463: Add docstring field to some AST nodes. ClassDef, ModuleDef, FunctionDef, and AsyncFunctionDef has docstring field for now. It was first statement of there body. * fix document. thanks travis! * doc fixes | ||||
* | bpo-29546: Improve from-import error message with location (#103) | Matthias Bussonnier | 2017-02-22 | 1 | -0/+3 |
| | | | | bpo-29546: Improve from-import error message with location | ||||
* | bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) | Matthias Bussonnier | 2017-02-22 | 2 | -13/+10 |
| | | | | | | | | | | | | | | Nick Coghlan said on bpo-28814: > inspect.getargvalues() and inspect.formatargvalues() were deprecated > in Python 3.5 as part of implementing bpo-20438 > This is incorrect, as these are *frame* introspection related functions, > not callable introspection ones. The documentation and implementation > layout is confusing though, as they're interleaved with the callable > introspection operation This commit undeprecates these functions and adds a note to ignore previous deprecation notices. | ||||
* | doc: fix compile error on "shoddy" example extension (GH-215) | INADA Naoki | 2017-02-21 | 2 | -1/+2 |
| | |||||
* | bpo-29453: Remove reference to undefined dictionary ordering in Tutorial ↵ | Jim Fasarakis-Hilliard | 2017-02-21 | 1 | -6/+5 |
| | | | | | | | | | (GH-140) As of Python 3.6 **kwargs are ordered, thus, remove the paragraph stating that ordering is undefined and change snippet to remove the unecessary sorted call. * Add sentence mentioning guaranteed output order of kwargs |