Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-29888: Fix the link referring to the "Python download page" (GH-824) | cocoatomo | 2017-03-26 | 1 | -1/+1 |
| | |||||
* | bpo-29901: Improve support of path-like objects in zipapp. (#815) | Serhiy Storchaka | 2017-03-25 | 1 | -4/+4 |
| | | | Now general path-like objects are supported, not just pathlib.Path. | ||||
* | bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) | NAKAMURA Osamu | 2017-03-25 | 1 | -1/+1 |
| | |||||
* | bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) | Ivan Levkivskyi | 2017-03-24 | 1 | -2/+16 |
| | |||||
* | bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799) | Serhiy Storchaka | 2017-03-24 | 2 | -2/+16 |
| | | | permission bits of newly-created intermediate-level directories. | ||||
* | doc: Fix small typos in library/multiprocessing (GH-698) | Sylvain Bellemare | 2017-03-24 | 1 | -2/+2 |
| | |||||
* | bpo-6532: Make the thread id an unsigned integer. (#781) | Serhiy Storchaka | 2017-03-23 | 2 | -1/+14 |
| | | | | | | | | | | | * bpo-6532: Make the thread id an unsigned integer. From C API side the type of results of PyThread_start_new_thread() and PyThread_get_thread_ident(), the id parameter of PyThreadState_SetAsyncExc(), and the thread_id field of PyThreadState changed from "long" to "unsigned long". * Restore a check in thread_get_ident(). | ||||
* | bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) | Nathaniel J. Smith | 2017-03-23 | 1 | -0/+3 |
| | | | | | * Provide socket.TCP_NOTSENT_LOWAT * New TCP option available on recent MacOS and Linux. * Document addition of TCP_NOTSENT_LOWAT | ||||
* | Remove an outdated statement in execution model docs (GH-754) | Ivan Levkivskyi | 2017-03-23 | 1 | -6/+0 |
| | |||||
* | doc: minor fix for library/profile (GH-761) | INADA Naoki | 2017-03-22 | 1 | -3/+3 |
| | |||||
* | fix function name in tabnanny documentation (GH-759) | Jelle Zijlstra | 2017-03-22 | 1 | -4/+4 |
| | |||||
* | Fix "NotImplentedError" typo in constants documentation (#692) | zertrin | 2017-03-20 | 1 | -1/+1 |
| | | | `NotImplentedError` --> `NotImplementedError` | ||||
* | bpo-29856: Fix typo in curses documentation (GH-730) | Mariatta | 2017-03-20 | 1 | -1/+1 |
| | | | From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst | ||||
* | bpo-28749: Fixed the documentation of the mapping codec APIs. (#487) | Serhiy Storchaka | 2017-03-19 | 1 | -47/+48 |
| | | | Added the documentation for PyUnicode_Translate(). | ||||
* | bpo-27200: Fix doctests in programming.rst and datetime.rst (#401) | Marco Buttu | 2017-03-18 | 4 | -5/+10 |
| | |||||
* | bpo-16355: Clarify when inspect.getcomments() returns None (#428) | Marco Buttu | 2017-03-17 | 1 | -1/+3 |
| | | | Initial patch by Vajrasky Kok. | ||||
* | bpo-29820: othergui.rst: Remove outdated information (GH-685) | Marco Buttu | 2017-03-17 | 1 | -12/+6 |
| | |||||
* | ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652) | Jelle Zijlstra | 2017-03-13 | 1 | -1/+1 |
| | |||||
* | fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653) | Jelle Zijlstra | 2017-03-13 | 1 | -2/+2 |
| | |||||
* | bpo-29756: Improve documentation for list methods that compare items by ↵ | Xiang Zhang | 2017-03-13 | 2 | -3/+3 |
| | | | | | | equality (GH-572) | ||||
* | bpo-28692: Deprecate using non-integer value for selecting a plural form in ↵ | Serhiy Storchaka | 2017-03-12 | 1 | -0/+4 |
| | | | | gettext. (#507) | ||||
* | bpo-29746: Update marshal docs to Python 3. (#547) | Serhiy Storchaka | 2017-03-12 | 3 | -15/+19 |
| | |||||
* | bpo-26121: Use C library implementation for math functions: (#515) | Serhiy Storchaka | 2017-03-11 | 1 | -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 Zijlstra | 2017-03-11 | 1 | -2/+2 |
| | |||||
* | 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 |
| |