summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896)Alexander Belopolsky2017-07-311-21/+49
| | | | | | | | | | | | | | | | | | * Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. * bpo-5288: Implemented %z formatting of sub-minute offsets. * bpo-5288: Removed mentions of the whole minute limitation on TZ offsets. * bpo-5288: Removed one more mention of the whole minute limitation. Thanks @csabella! * Fix a formatting error in the docs * Addressed review comments. Thanks, @haypo.
* bpo-30522: Implemented a method to allow setting a logging.StreamHander's ↵Vinay Sajip2017-07-301-0/+13
| | | | stream. (GH-2921)
* bpo-30803: clarify truth value testing documentation (#2508)Peter Thomassen2017-07-291-19/+14
| | | Initial patch by Peter Thomassen.
* Fix trivial typo in multiprocessing documentation (GH-2930)Yuval Langer2017-07-281-1/+1
|
* bpo-30302: Update WhatsNew and documentation. (#2929)Utkarsh Upadhyay2017-07-282-1/+4
| | | | | | * Update 'Porting to .37' section. * Fix a minor example in the doc.
* Add the link to asyncio source code in the docs (GH-2373)lf2017-07-258-3/+23
|
* bpo-30302 Make timedelta.__repr__ more informative. (#1493)Utkarsh Upadhyay2017-07-251-3/+4
|
* Minor typo in curses.rst (#2763)waxmoon2017-07-241-1/+1
| | | I found a tiny typo in the curses how-to: changed 'Thy' to 'The' on line 68.
* bpo-30456: Clarify example for duplicates in second argument of isinstance ↵Eli Boyarski2017-07-241-1/+2
| | | | (GH-1699)
* bpo-30964: Mention ensurepip in package installation docs (GH-2786)Nicholas2017-07-211-0/+11
| | | | | | | Adds a new 'Pip not installed' section that covers running `ensurepip` manually, and also references the relevant section of the Python Packaging User Guide.
* Fix typo in Turtle Docs: yingyang -> yinyang (GH-2770)靳阳2017-07-201-1/+1
|
* Update doc download files size estimates. (#2771)Ned Deily2017-07-201-9/+9
|
* bpo-30794: added kill() method to multiprocessing.Process (#2528)Vitor Pereira2017-07-181-0/+6
| | | | | | | | | | | | | | * bpo-30794: added kill() method to multiprocessing.Process * Added entries to documentation and NEWS * Refactored test_terminate and test_kill * Fix SIGTERM and SIGKILL being used on Windows for the tests * Added "versionadded" marker to the documentation * Fix trailing whitespace in doc
* [bpo-30916] Pre-build OpenSSL and Tcl/Tk for Windows (#2688)Steve Dower2017-07-171-1/+12
| | | Updates ssl and tkinter projects to use pre-built externals
* bpo-30939: Avoid Sphinx deprecation warning in docs build. (#2721)Ned Deily2017-07-151-1/+1
|
* Doc that 'sorted' args are keyword-only, fix 'reverse' default (#2706)Łukasz Rogalski2017-07-142-2/+2
|
* bpo-30466: Add brief explanation of classes to tutorial (GH-1804)Trey Hunner2017-07-131-0/+6
|
* bpo-26506: hex() documentation: mention %x % int (GH-2525)Manvisha Kodali2017-07-061-10/+52
|
* bpo-30862: Updated Logger.setLevel documentation. (GH-2604)Vinay Sajip2017-07-061-4/+8
|
* Remove outdated FOX from GUI FAQ (GH-2538)Berker Peksag2017-07-041-9/+0
| | | | | | FXpy doesn't have a Python 3 port and it only supports Python 2.2 and older versions. Reported by Alex Walters on docs@p.o.
* bpo-6691: Pyclbr now reports nested classes and functions. (#2503)csabella2017-07-041-55/+92
| | | Original patch by Guilherme Polo. Revisions by Cheryl Sabella.
* bpo-23451: Fix socket deprecation warnings in socketmodule.c (#2318)Segev Finer2017-06-281-0/+4
| | | | | | | | | | | | | | | | | | * bpo-23451: Fix WSASocket and WSADuplicateSocket deprecation warnings * bpo-23451: Add backwards compatibility note about socket share/fromshare * bpo-23451: Fixed `WSAAddressToString`/`WSAStringToAddress` deprecation warnings * bpo-23451: Use `inet_pton`/`inet_ntop` instead of `WSAAddressToString`/`WSAStringToAddress` * bpo-23451: Move `HAVE_INET_PTON` from _socket.vcxproj to pyconfig.h * bpo-23451: Add SUPPRESS_DEPRECATED_CALL to socketmodule.c * bpo-23451: Add a NEWS.d entry * bpo-23451: Corrected NEWS.d entry
* bpo-30362 : Add list options to launcher. (#1578)Steve (Gadget) Barnes2017-06-281-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bpo-30362 Add list options to launcher. * bpo-30362 Add list options to help message. * To avoid possible later conflict with python replaced flags with --launcher-list and --launcher-list-paths * bpo-30362 Changed flag to -0 as suggested on review. * bpo-30362: Modified to default to not path for -0, -0p to dispaly path and append * to default * bpo-30362: Modified to display list on required version not found. * bpo-30362 add --list and --list-paths added back in following review by paul.moore * bpo-30362 Cleaner handing of -0 & -0p by not calling exit directly per review by @zooba * bpo-30362: Tidy up and add news & what's new Removed commented out line of code in PC/launcher.c. Added the results of using blurb to add details of bpo-30362 & bpo-30291. Updated Doc/whatsnew/3.7.rst to add a Windows only section covering both tickets. * bpo-30362 Resolve conflict in Doc/whatsnew/3.7.rst * bpo-30362:Address Whitespace Issue in Doc\whatsnew\3.7.rst * Shorten NEWS message for bpo-30362 * Shorten NEWS item for bpo-30291
* Clarification to the `break` statement (GH-2453)regexaurus2017-06-271-1/+1
| | | Clarify that the break statement breaks out of the innermost enclosing for or while loop.
* bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285)Serhiy Storchaka2017-06-272-5/+15
| | | | | Raise a ValueError if the second argument is NULL and the wchar_t\* string contains null characters.
* bpo-30733: Fix typos in "What's New" entry (GH-2414)Walter Dörwald2017-06-261-2/+2
|
* Fix bpo-30596: Add close() method to multiprocessing.Process (#2010)Antoine Pitrou2017-06-241-0/+10
| | | | | | | | | | * Fix bpo-30596: Add close() method to multiprocessing.Process * Raise ValueError if close() is called before the Process is finished running * Add docs * Add NEWS blurb
* bpo-21071: struct.Struct.format type is now str (#845)Victor Stinner2017-06-232-0/+6
|
* bpo-30736: upgrade to Unicode 10.0 (#2344)Benjamin Peterson2017-06-234-7/+14
| | | Straightforward. While we're at it, though, strip trailing whitespace from generated tables.
* bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339)_ = NaN2017-06-231-3/+3
|
* bpo-30619: Clarify typing.Union documentation (GH-2326)khyox2017-06-221-1/+1
| | | When a class and its subclass are present, the latter is skipped.
* Fix typo in 3.7 whatsnew (#2308)Daniel Porteous2017-06-211-1/+1
|
* bpo-29933: Improve set_write_buffer_limits description (GH-2262)Kojo Idrissa2017-06-201-1/+7
| | | | | Improve the description of the high and low parameters for set_write_buffer_limits. Also fixed a small grammatical issue.
* bpo-30054: Expose tracemalloc C API (#1236)Victor Stinner2017-06-202-0/+35
| | | | | | | | | * Make PyTraceMalloc_Track() and PyTraceMalloc_Untrack() functions public (remove the "_" prefix) * Remove the _PyTraceMalloc_domain_t type: use directly unsigned int. * Document methods Note: methods are already tested in test_tracemalloc.
* bpo-29755: Fixed the lgettext() family of functions in the gettext module. ↵Serhiy Storchaka2017-06-201-81/+80
| | | | | | | | (#2266) They now always return bytes. Updated the gettext documentation.
* bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)Nick Coghlan2017-06-182-14/+10
| | | | | | | | | | | | - removes PY_WARN_ON_C_LOCALE build time flag - locale coercion and compatibility warnings are now always compiled in, but are off by default - adds PYTHONCOERCECLOCALE=warn runtime option to aid in debugging potentially locale related compatibility problems Due to not-yet-resolved test failures on *BSD systems (including Mac OS X), this also temporarily disables UTF-8 as a locale coercion target, and skips testing the interpreter's behavior in the POSIX locale.
* bpo-29783: Replace codecs.open() with io.open() (#599)Victor Stinner2017-06-161-5/+2
|
* bpo-30450: Add NEWS and whatsnew (GH-2236)Zachary Ware2017-06-161-0/+6
|
* bpo-30176: Add missing curses cell attributes constants (GH-1302)Xiang Zhang2017-06-161-10/+46
|
* bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when ↵Milan Oberkirch2017-06-141-0/+5
| | | | | parent isn't a package (GH-1899) Previously AttributeError was raised, but that's not very reflective of the fact that the requested module can't be found since the specified parent isn't actually a package.
* Fix trivial typo in Readme (GH-2185)csabella2017-06-141-1/+1
| | | Replace platform with platforms.
* bpo-25514: Improve IDLE's connection refused message (#2177)terryjreedy2017-06-141-0/+44
| | | When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
* bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173)Ben Hoyt2017-06-131-1/+1
|
* bpo-30656: Fix Python C API Module Objects documentation (GH-2170)Emily Morehouse2017-06-131-1/+1
| | | `PyModule_New()` now refers to `PyModule_NewObject()`
* bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926)Sanyam Khurana2017-06-131-0/+4
| | | | | | | | bpo-24744: Raise error in pkgutil.walk_packages if path is str Previously an empty result list was accidentallly returned, since the code iterated over the string as if it were the expected list of paths, and of course found nothing.
* Mention how to disable signal fd wakeup (#2140)Antoine Pitrou2017-06-131-2/+4
|
* bpo-6519: Improve Python Input Output Tutorial (GH-2143)Andrew Kuchling2017-06-131-21/+29
| | | Move up the discussion about 'with' keyword, so it appears earlier in the document.
* bpo-30621: Update Input Output Tutorial Example(GH-2074)suketa2017-06-121-0/+1
| | | import json before using json module
* bpo-11822: Improve disassembly to show embedded code objects. (#1844)Serhiy Storchaka2017-06-112-2/+19
| | | The depth argument limits recursion.
* remove extra word (#2101)Benjamin Peterson2017-06-111-2/+2
|