Eli Bendersky
a09daef09e
Update docstring to mention correct PEP number.
This file hasn't been touched since its initial commit in 2006. In CPython
default branch (3.4), the relevant PEP number is 3333.
12 years ago
Victor Stinner
6834a65773
Issue #20367 : Add Glenn Langford to Misc/ACKS
12 years ago
Serhiy Storchaka
2c5ddbe030
Issue #20193 : The zlib module now uses Argument Clinic.
12 years ago
Serhiy Storchaka
62a85b54a3
Issue #19990 : Added tests for the imghdr module.
Based on patch by Claudiu Popa.
12 years ago
Serhiy Storchaka
1ac00950b2
Issue #19990 : Added tests for the imghdr module.
Based on patch by Claudiu Popa.
12 years ago
Guido van Rossum
e6994ff6e3
Fix issue #20367 : concurrent.futures.as_completed() for duplicate arguments.
Patch by Glenn Langford.
12 years ago
Serhiy Storchaka
252fd0c24b
Merge heads
12 years ago
Serhiy Storchaka
dbe0982bc5
Issue #8260 : The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after
readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
12 years ago
Serhiy Storchaka
8003850e22
Issue #8260 : The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after
readline() or read(size). Based on patch by Amaury Forgeot d'Arc.
12 years ago
Andrew Svetlov
0742cae335
Merge latest Tulip into asyncio
12 years ago
Benjamin Peterson
b62deac9a3
cleanup after custom buffer converter
12 years ago
Benjamin Peterson
08673c57f0
fix refleak on error
12 years ago
Nick Coghlan
77b286b2cc
Close #20105 : set __traceback__ when chaining exceptions in C
12 years ago
Larry Hastings
23e37aa7b7
Issue #20358 : Tests for curses.window.overlay and curses.window.overwrite
no longer specify min{row,col} > max{row,col}.
12 years ago
Larry Hastings
f0537e8d1c
Issue #20390 : Final fix, for generating NoPositional/NoKeyword for __init__ calls.
12 years ago
Donald Stufft
0711dd921b
Update pip to 1.5.2 and setuptools to 2.1
12 years ago
Larry Hastings
f256c22f34
Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch).
12 years ago
Larry Hastings
c20472640c
Issue #20390 : Small fixes and improvements for Argument Clinic.
12 years ago
Guido van Rossum
9ad116bcd0
Document asyncio.QueueFull/Empty.
12 years ago
Guido van Rossum
d6fb2c7629
NEWS update for asyncio.
12 years ago
Guido van Rossum
fef7098ef9
asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from queue.py.
12 years ago
Guido van Rossum
ab3c88983b
asyncio: Locks refactor: use a separate context manager; remove Semaphore._locked.
12 years ago
Guido van Rossum
ab27a9fc4b
asyncio: Fix race in FastChildWatcher (by its original author, Anthony Baire).
12 years ago
Victor Stinner
669eeaf933
Merge latest Tulip into asyncio
- Make the new granularity attribute private
- Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmetic
instead
12 years ago
Victor Stinner
3c2f175ec4
Issue #20311 : Fix test_telnetlib, set the resolution of the MockSelector
12 years ago
Eric Snow
6029e08691
Issue 19944: Fix importlib.find_spec() so it imports parents as needed.
The function is also moved to importlib.util.
12 years ago
Victor Stinner
128ee220e2
asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor
BaseProactorEventLoop
Import them from submodules if you really need them.
12 years ago
Benjamin Peterson
ce8d153b02
merge 3.3
12 years ago
Benjamin Peterson
714d7ffd0d
update sphinx url
12 years ago
Benjamin Peterson
039a02c64e
linkify
12 years ago
Serhiy Storchaka
c0b0bb6e01
Issue #20331 : Fixed possible FD leaks in various modules:
http.server, imghdr, mailcap, mimetypes, xml.etree.
12 years ago
Serhiy Storchaka
91b0bc237c
Issue #20331 : Fixed possible FD leaks in various modules:
http.server, imghdr, mailcap, mimetypes, xml.etree.
12 years ago
Ezio Melotti
a3642b67ca
#20348 : fix headers markup in Argument Clinic howto. Patch by Moritz Neeb.
12 years ago
Victor Stinner
8dffc456d7
Update asyncio from the Tulip project
Major changes:
- StreamReader.readexactly() now raises an IncompleteReadError if the
end of stream is reached before we received enough bytes, instead of
returning less bytes than requested.
- Unit tests use the main asyncio module instead of submodules like events
- _UnixWritePipeTransport now also supports character devices, as
_UnixReadPipeTransport. Patch written by Jonathan Slenders.
- Export more symbols: BaseEventLoop, BaseProactorEventLoop,
BaseSelectorEventLoop, Queue and Queue sublasses, Empty, Full
12 years ago
Victor Stinner
75a5ec88ff
Fix asyncio tests: define resolution
12 years ago
Victor Stinner
6b0fa70547
test_selectors: remove unused imports
12 years ago
Victor Stinner
f67255ab94
Issue #20311 : asyncio: Add a granularity attribute to BaseEventLoop: maximum
between the resolution of the BaseEventLoop.time() method and the resolution of
the selector. The granuarility is used in the scheduler to round time and
deadline.
12 years ago
Victor Stinner
635fca9704
Issue #20311 : selectors: Add a resolution attribute to BaseSelector.
12 years ago
Victor Stinner
2041859f27
Issue #20311 : Revert e042ea77a152 and 7ce7295393c2, PollSelector.select() and
EpollSelector.select() round again the timeout towards zero
12 years ago
Victor Stinner
38c72bd199
(Merge 3.3) Issue #20311 : Revert 033137c12d88 (02f9db3e684e),
select.epoll.poll() rounds again the timeout towards zero
12 years ago
Victor Stinner
933209689e
Issue #20311 : Revert 033137c12d88, select.epoll.poll() rounds again the timeout
towards zero
12 years ago
Serhiy Storchaka
98c779e8da
Issue #20193 : The _lzma module now uses Argument Clinic.
LZMACompressor.__init__ is left not converted.
12 years ago
Eric V. Smith
df9db26902
Fix grammar: merge with 3.3.
12 years ago
Eric V. Smith
b72e69e529
Fix grammar.
12 years ago
Serhiy Storchaka
1bc4bb2af1
Issue #20193 : The _bz2 module now uses Argument Clinic.
12 years ago
Serhiy Storchaka
8d00d73249
Issue #20133 : The audioop module now uses Argument Clinic.
12 years ago
Serhiy Storchaka
12785617c8
Fixed converting errors in the binascii module (issue20151).
a2b_qp() now accepts keyword arguments.
All "ascii" parameters is renamed to "data" for consistancy with a2b_qp().
12 years ago
Zachary Ware
9d7849f454
Issue #20376 : Argument Clinic now escapes backslashes in docstrings.
12 years ago
Serhiy Storchaka
3ffd913d66
Issue #20151 : The binascii module now uses Argument Clinic.
12 years ago
Benjamin Peterson
e4e7199c50
merge 3.3
12 years ago