R David Murray
b79b785a92
whatsnew: importlib deprecations.
This addresses issue #20199 , if I got it right. The deprecation and
replacement lists are based on the importlib documentation.
12 years ago
Yury Selivanov
53281b1626
asyncio.docs: Document subprocess_exec and subprocess_shell. Issue #20694 .
12 years ago
Yury Selivanov
37f15bcfed
asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #20706
12 years ago
Yury Selivanov
d3f8e30828
asyncio.docs: Improve documentation of Streams. Issue #20696 .
12 years ago
Yury Selivanov
43ee1c1325
asyncio.docs: Document Error Handling API and asyncio.Handle
12 years ago
Victor Stinner
1415e25e05
asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG
env var), document the default debug mode
12 years ago
Victor Stinner
0f3e6bca1b
asyncio, Tulip issue #136 : Add get/set_debug() methods to BaseEventLoopTests.
Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since
Python startup, to be able to debug coroutines defined directly in the asyncio
module.
12 years ago
Victor Stinner
a6919aa4ed
asyncio: document new create_unix_connection() and create_unix_server() methods
of BaseEventLoop
12 years ago
Yury Selivanov
026019f89b
Mangle __parameters in __annotations__ dict properly. Issue #20625 .
12 years ago
Victor Stinner
fd9d374ae9
Issue #20493 : Document that asyncio should not exceed one day
12 years ago
Victor Stinner
86516d9225
Close #20649 : Fix typo in asyncio doc. Patch written by Brett Cannon.
12 years ago
Victor Stinner
04e05da1b3
Close #20652 : asyncio doc: close the event loop in run_forever() example. Fix
also typo. Patch written by Vajrasky Kok.
12 years ago
Victor Stinner
a91ff1423f
Issue #20616 : Add a format() method to tracemalloc.Traceback.
12 years ago
Victor Stinner
1b0580b320
ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if
the address is not resolved (hostname instead of an IP address) for AF_INET and
AF_INET6 address families.
12 years ago
Georg Brandl
b38b5c43c7
merge with 3.3
12 years ago
Larry Hastings
ad88d7a26b
Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.
12 years ago
Larry Hastings
8f9f0f12e8
Issue #20517 : Removed unnecessary new (short-lived) functions from PyErr.
12 years ago
Larry Hastings
b082731fbb
Issue #20517 : Functions in the os module that accept two filenames
now register both filenames in the exception on failure.
This required adding new C API functions allowing OSError exceptions
to reference two filenames instead of one.
12 years ago
Eli Bendersky
136fea253e
More complete documentation of event loops and policies.
Documented the AbstractEventLoopPolicy interface explicitly and explained the
relation between the global loop & policy access functions. Added an initial
section that explains the connections in general terms. Documented missing XXX
methods.
12 years ago
Eli Bendersky
b73c83318d
Various formatting & grammar fixes in asyncio* docs.
12 years ago
Eli Bendersky
8b402629ae
Fix typo in library/ipc.rst
12 years ago
Nick Coghlan
72318b97f6
Issue #20500 : clarify that invocation may be indirect
12 years ago
Nick Coghlan
c0bc0b46bb
Issue #20500 : Note other public APIs with the new assertion
12 years ago
Victor Stinner
0c3949c963
asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent
Process and Popen objects
12 years ago
Nick Coghlan
3d7b3641d3
Note the new debug assertion in PyObject_Str
12 years ago
Brian Curtin
a1afeec9aa
Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com
12 years ago
Victor Stinner
12c68b20b7
asyncio doc: fix gather() doc
12 years ago
Nick Coghlan
aa029dad50
Tweaks to What's New and some referenced docs
12 years ago
Nick Coghlan
96bb437ae8
Close #20563 : Declare ipaddress API stable
12 years ago
Senthil Kumaran
409ea5dac1
Include the mention of ResourceWarning being displayed by default by the test runner.
Addressing #issue 20529
12 years ago
Victor Stinner
c1567df61e
asyncio doc: document missing event loop methods
12 years ago
Victor Stinner
ffbe3c67df
asyncio doc: sort methods
12 years ago
Ethan Furman
ca1b794dac
Close issue20534: all pickle protocols now supported.
12 years ago
Nick Coghlan
73afe2a972
Close #20481 : Disallow mixed type input in statistics
The most appropriate coercion rules are not yet clear, so simply
disallowing mixed type input for 3.4.
(Committed on Steven's behalf)
12 years ago
Victor Stinner
85310a50a9
Issue #20505 : Remove resolution and _granularity from selectors and asyncio
* Remove selectors.BaseSelector.resolution attribute
* Remove asyncio.BaseEventLoop._granularity attribute
12 years ago
R David Murray
27e9de669b
#20531 : Revert e20f98a8ed71, the 3.4 version of the #19063 fix.
12 years ago
Victor Stinner
790202d613
asyncio doc: mention that asyncio is not thread-safe
12 years ago
R David Murray
02384bfa94
#20477 : add examples of using the new contentmanager API.
12 years ago
Serhiy Storchaka
5e028ae09e
Fix empty strings to empty bytes objects.
12 years ago
Ethan Furman
c72e638643
Close issue20412: Updated Enum docs to have referencable Enum and IntEnum classes
12 years ago
Brett Cannon
07fbd78473
Issue #20488 : Update docs to say importlib is *the* implementaiton of
import and not *an* implementation.
12 years ago
Brett Cannon
f811bbfe6c
Issue #6386 : When executing a script that's a symlink, the directory
where the symlink resolves to is added to sys.path, not the directory
containing the symlink itself.
Thanks to Sanko Resic for an initial attempt at the patch.
12 years ago
Ronald Oussoren
94e44a935b
Issue #14455 : fix handling of unsigned long long values for binary plist files
Values in the range of an unsigned long long, but outside of the range
of a signed long long were serialized as a negative value.
Due to a bug in PyObjC my test scripts indicated that the previous behavior
matched Apple's plist code, instead the handle large unsigned values correctly.
The change to plistlib.py is from a patch by Serhiy.
12 years ago
R David Murray
23686074b0
#14515 : clarify that TemporaryDirectory's __enter__ returns the name.
12 years ago
Guido van Rossum
3c9bb69fa1
Add missing word ("thread") to sentence about call_soon_threadsafe.
12 years ago
Victor Stinner
5cb84ed5b1
asyncio doc: add an example to schedule a coroutine from a different thread
12 years ago
Vinay Sajip
6068b6c977
Issue #20509 : Added cross-reference in documentation.
12 years ago
Martin v. Löwis
ca7b04644c
Issue #17162 : Add PyType_GetSlot.
12 years ago
Victor Stinner
e48d4db000
asyncio doc: add an example of asyncio.subprocess with communicate() and wait()
12 years ago
Victor Stinner
b79eb0502c
asyncio.subprocess: Replace Process.get_subprocess() method with a
Process.subprocess read-only property
12 years ago