Robert DiPietro
fb6c1f8d3b
Fix typo in re.escape documentation (GH-14722)
2019-07-13 16:35:04 +08:00
Brett Cannon
0827064c95
bpo-37521: No longer treat insertion into sys.modules as optional in importlib examples (GH-14723)
...
Fix importlib examples to insert any newly created modules via importlib.util.module_from_spec() immediately into sys.modules instead of after calling loader.exec_module().
Thanks to Benjamin Mintz for finding the bug.
https://bugs.python.org/issue37521
2019-07-12 15:35:34 -07:00
Mariatta
7cbef72902
closes bpo-37554: Remove `q:q` in os.rst documentation (GH-14692)
...
https://bugs.python.org/issue37554
2019-07-11 10:31:19 -07:00
Tal Einat
79042ac434
bpo-34369: make kqueue.control() docs better reflect that timeout is positional-only (GH-9499)
2019-07-11 17:00:34 +03:00
Jeroen Demeyer
59ad110d7a
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
2019-07-11 17:59:05 +09:00
Benjamin Peterson
2a3d4d9c53
Document default parameter of .seek() in the signature. (GH-14691)
2019-07-10 19:43:04 -07:00
Victor Stinner
91b4f7ab7f
bpo-37526: Add support.catch_threading_exception() (GH-14664)
...
Context manager catching threading.Thread exception using
threading.excepthook.
2019-07-09 13:00:23 +02:00
Julien Palard
66b4150f6f
Doc: Fix example title. (GH-14639)
2019-07-08 23:08:07 +02:00
Julien Palard
2da622ff77
Doc: Fix: Proper UpperCamelCase and lowercase. (GH-14644)
...
Initial report by Michael Blankenship on docs@
2019-07-08 23:06:32 +02:00
Jeroen Demeyer
762f93ff2e
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
2019-07-08 17:19:25 +09:00
Hai Shi
f6cdd3ff68
bpo-37513: Change ValueError to TypeError in an example in ctypes doc (GH-14615)
2019-07-07 23:40:07 +08:00
Terry Jan Reedy
a9b40e4546
bpo-37478: Add missing 'and'. (GH-14631)
2019-07-06 22:44:01 -04:00
Kyle Stanley
0717b4d9b3
bpo-37478: Specify possible exceptions for os.chdir() (GH-14611)
2019-07-06 21:20:15 -04:00
Terry Jan Reedy
6f2a8c0857
bpo-37456: Slash ('/') is now part of syntax. (GH-14627)
2019-07-06 18:13:02 -04:00
Terry Jan Reedy
f8709e804d
bpo-37487: Fix PyList_GetItem index description. (GH-14623)
...
0 is a legal index.
2019-07-06 17:40:27 -04:00
Tal Einat
fcf1d003bf
bpo-26806: add 30 to the recursion limit in IDLE's shell (GH-13944)
...
This is done to compensate for the extra stack frames added by
IDLE itself, which cause problems when setting the recursion limit
to low values.
This wraps sys.setrecursionlimit() and sys.getrecursionlimit()
as invisibly as possible.
2019-07-06 15:35:24 +03:00
Terry Jan Reedy
45bc61b971
bpo-37149: Replace dead link for online Tkinter reference (GH-14616)
...
Also fix a name misspelling.
2019-07-06 02:31:54 -04:00
Hai Shi
39a5d17a7f
closes bpo-37508: Fix name of type in memory.rst. (GH-14604)
2019-07-05 21:03:13 -07:00
Victor Stinner
1da4462765
bpo-37481: Deprecate distutils bdist_wininst command (GH-14553)
...
The distutils bdist_wininst command is now deprecated, use
bdist_wheel (wheel packages) instead.
2019-07-05 10:44:12 +02:00
Tim Hoffmann
a55f75a6e3
Use OSError subclasses in os documentation (GH-14262)
2019-07-05 11:41:35 +03:00
thatneat
2f19e82fbe
bpo-37479: on Enum subclasses with mixins, __format__ uses overridden __str__ (GH-14545)
...
* bpo-37479: on Enum subclasses with mixins, __format__ uses overridden __str__
2019-07-04 11:28:37 -07:00
Victor Stinner
b4e68960b9
bpo-37266: Add bpo number to the What's New entry (GH614584)
...
To get more info about this change.
2019-07-04 18:30:19 +02:00
Jeroen Demeyer
7f41c8e0dd
bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)
2019-07-04 19:35:31 +09:00
Jeroen Demeyer
196a530e00
bpo-37483: add _PyObject_CallOneArg() function ( #14558 )
2019-07-04 19:31:34 +09:00
aldwinaldwin
b607d992e7
bpo-37459: importlib docs improperly reference get_resource_loader() ( #14568 )
...
* bpo-37459: importlib docs improperly reference get_resource_loader()
2019-07-03 17:58:45 -07:00
ILJI CHOI
0f6f73ff3c
Fix typo in 3.9's Whats new. Pyton -> Python (GH-14567)
2019-07-02 19:36:01 -07:00
Hai Shi
aeecf38066
bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)
2019-07-03 09:56:07 +08:00
Steve Dower
e226e83d36
bpo-37363: Add audit events on startup for the run commands (GH-14524)
2019-07-01 16:03:53 -07:00
Vinay Sajip
0f4e813282
bpo-37470: Document more clearly the error handling for QueueHandler.emit(). (GH-14532)
2019-07-01 20:45:01 +01:00
Vinay Sajip
e6b64b756f
bpo-37469: Document usability of SimpleQueue with QueueHandler and QueueListener. (GH-14521)
2019-07-01 18:45:07 +01:00
Victor Stinner
36242fd871
bpo-36763: Add PyConfig_SetWideStringList() (GH-14444)
2019-07-01 19:13:50 +02:00
Pierre Glaser
ec6c1bd049
bpo-37209: Add pickle entry for 3.8 whatsnew (GH-14503)
2019-07-01 15:51:57 +02:00
Miro Hrončok
72cd653c4e
bpo-10945: Drop support for bdist_wininst on non-Windows systems (GH-14506)
...
bdist_wininst depends on MBCS codec, unavailable on non-Windows,
and bdist_wininst have not worked since at least Python 3.2, possibly
never on Python 3.
Here we document that bdist_wininst is only supported on Windows,
and we mark it unsupported otherwise to skip tests.
Distributors of Python 3 can now safely drop the bdist_wininst .exe files
without the need to skip bdist_wininst related tests.
2019-07-01 14:12:40 +02:00
Vinay Sajip
84de34e39e
bpo-32934: Clarified meaning of 'capacity' for BufferingHandler and MemoryHandler. (GH-14498)
2019-07-01 12:41:21 +01:00
Pablo Galindo
4a2edc34a4
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959)
...
Add PyCode_NewEx to be used internally and set PyCode_New as a compatibility wrapper
2019-07-01 12:35:05 +02:00
Christian Heimes
d1bd6e79da
bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)
...
Post-handshake authentication is required for conditional client cert authentication with TLS 1.3.
https://bugs.python.org/issue37440
2019-06-30 23:32:24 -07:00
Krishna Oza
12b436e3b0
bpo-36168: Lowercase the word "subsequent" in get_value doc (GH-14485)
...
Subsequent -> subsequent
https://bugs.python.org/issue36168
2019-06-30 23:04:20 -07:00
Andrew Svetlov
0d671c04c3
bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (GH-14344)
2019-06-30 12:54:59 +03:00
tmblweed
eb97b9211e
bpo-30754: Document textwrap.dedent blank line behavior. (GH-14469)
...
* Added documentation for textwrap.dedent behavior.
* Remove an obsolete note about pre-2.5 behavior from the docstring.
2019-06-29 21:20:03 -07:00
Andre Delfino
3e6583061c
Make StreamHandler.terminator more discoverable (GH-14359)
2019-06-29 22:59:49 +01:00
Andre Delfino
18a2fc6f23
Fix indentation in logging.handlers.setStream (GH-14358)
2019-06-29 22:57:39 +01:00
Brett Cannon
f9f8e3ce70
bpo-37403: Touch up venv docs (GH-14458)
...
Add a versionadded for PS Core and note that `.venv` is a common virtual environment name.
2019-06-28 12:14:31 -07:00
Jeroen Demeyer
b1263d5a60
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
2019-06-28 18:49:00 +09:00
Hai Shi
b4bee03087
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
2019-06-28 18:02:56 +09:00
Steve Dower
44f91c388a
bpo-37390: Add audit event table to documentations (GH-14406)
...
Also updates some (unreleased) event names to be consistent with the others.
2019-06-27 10:47:59 -07:00
Carl Bordum Hansen
06a8916cf4
bpo-37376: pprint support for SimpleNamespace (GH-14318)
...
https://bugs.python.org/issue37376
2019-06-26 16:13:18 -07:00
Serhiy Storchaka
2d88e63bfc
bpo-37163: Make the obj argument of dataclasses.replace() a positional-only. (GH-14390)
2019-06-26 19:07:44 +03:00
Victor Stinner
69150669f2
bpo-37414: Remove sys.callstats() (GH-14398)
...
Remove the undocumented sys.callstats() function. Since Python 3.7,
it was deprecated and always returned None. It required a special
build option CALL_PROFILE which was already removed in Python 3.7.
2019-06-26 18:01:10 +02:00
Steve Dower
7a177c08ab
Improve Windows commands in tutorial (GH-14379)
2019-06-26 08:55:57 -07:00
Victor Stinner
689830ee62
bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)
...
The os.getcwdb() function now uses the UTF-8 encoding on Windows,
rather than the ANSI code page: see PEP 529 for the rationale. The
function is no longer deprecated on Windows.
os.getcwd() and os.getcwdb() now detect integer overflow on memory
allocations. On Unix, these functions properly report MemoryError on
memory allocation failure.
2019-06-26 17:31:12 +02:00