summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* bpo-29962: add math.remainder (#950)Mark Dickinson2017-04-052-0/+27
| | | | | | | | | | | | | | * Implement math.remainder. * Fix markup for arguments; use double spaces after period. * Mark up function reference in what's new entry. * Add comment explaining the calculation in the final branch. * Fix out-of-order entry in whatsnew. * Add comment explaining why it's good enough to compare m with c, in spite of possible rounding error.
* bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947)csabella2017-04-041-0/+5
| | | * bpo-29725: DOC: add text for arraysize in sqlite3.Cursor
* Fix misleading documentation for math.exp. (#951)Mark Dickinson2017-04-021-2/+2
|
* bpo-19225: Add a table of warning names and missed exception names in C API ↵cocoatomo2017-04-021-56/+149
| | | | | doc (#881) Move the `.. index` directive to more appropriate place.
* bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298)Pierre Quentel2017-04-022-4/+16
| | | | Return 304 response if file was not modified.
* bpo-26947: DOC: clarify wording on hashable in glossary (#948)csabella2017-04-021-3/+3
|
* bpo-29952: Use usual terminology of dict (GH-917)cocoatomo2017-03-311-1/+1
| | | s/keys and elements/keys and values/
* bpo-29928: Add f-string to the Glossary (GH-864)Mariatta2017-03-301-0/+5
|
* bpo-29913: deprecate compare_networks() in documentation (GH-865)s-sanjay2017-03-301-0/+3
|
* bpo-29918: Add missed "const" modifiers in C API documentation. (#846)Serhiy Storchaka2017-03-3012-89/+84
|
* bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)Serhiy Storchaka2017-03-302-1/+16
| | | | os.fwalk() is sped up by 2 times by using os.scandir().
* bpo-24821: Fixed the slowing down to 25 times in the searching of some (#505)Serhiy Storchaka2017-03-301-0/+5
| | | | unlucky Unicode characters.
* bpo-29917: DOC: Remove link from PyMethodDef (#890)csabella2017-03-301-2/+2
|
* bpo-29677: DOC: clarify documentation for `round` (GH-877)csabella2017-03-291-3/+6
|
* bpo-10379: add 'monetary' to format_string, deprecate formatGarvit Khatri2017-03-282-30/+46
| | | | | | | Add the 'monetary' parameter to format_string so that all uses of format can be converted to format_string. Adjust the documentation accordingly, and add a deprecation warning when format is used.
* bpo-16011 clarify that 'in' always returns a boolean valueAmit Kumar2017-03-281-9/+10
|
* Improve the documentation for template strings (#856)Barry Warsaw2017-03-282-15/+24
| | | | | bpo-19824 bpo-20314 bpo-12518
* bpo-29677: DOC: clarify documentation for `round` (#357)Gerrit Holl2017-03-271-1/+2
| | | | | | | | | | * DOC: clarify documentation for `round` Clarified that `round` can take a negative value for *ndigits*. * DOC: remove trailing whitespace in previous commit remove trailing whitespace in previous commit
* bpo-29888: Fix the link referring to the "Python download page" (GH-824)cocoatomo2017-03-261-1/+1
|
* bpo-29901: Improve support of path-like objects in zipapp. (#815)Serhiy Storchaka2017-03-251-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 Osamu2017-03-251-1/+1
|
* bpo-28810: Document remaining bytecode changes in 3.6 (GH-651)Ivan Levkivskyi2017-03-241-2/+16
|
* bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799)Serhiy Storchaka2017-03-242-2/+16
| | | permission bits of newly-created intermediate-level directories.
* doc: Fix small typos in library/multiprocessing (GH-698)Sylvain Bellemare2017-03-241-2/+2
|
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-232-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. Smith2017-03-231-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 Levkivskyi2017-03-231-6/+0
|
* doc: minor fix for library/profile (GH-761)INADA Naoki2017-03-221-3/+3
|
* fix function name in tabnanny documentation (GH-759)Jelle Zijlstra2017-03-221-4/+4
|
* Fix "NotImplentedError" typo in constants documentation (#692)zertrin2017-03-201-1/+1
| | | `NotImplentedError` --> `NotImplementedError`
* bpo-29856: Fix typo in curses documentation (GH-730)Mariatta2017-03-201-1/+1
| | | From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
* bpo-28749: Fixed the documentation of the mapping codec APIs. (#487)Serhiy Storchaka2017-03-191-47/+48
| | | Added the documentation for PyUnicode_Translate().
* bpo-27200: Fix doctests in programming.rst and datetime.rst (#401)Marco Buttu2017-03-184-5/+10
|
* bpo-16355: Clarify when inspect.getcomments() returns None (#428)Marco Buttu2017-03-171-1/+3
| | | Initial patch by Vajrasky Kok.
* bpo-29820: othergui.rst: Remove outdated information (GH-685)Marco Buttu2017-03-171-12/+6
|
* ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652)Jelle Zijlstra2017-03-131-1/+1
|
* 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
|