- 12 Jun, 2014 7 commits
-
-
Antoine Pitrou authored
Issue #21711: support for "site-python" directories has now been removed from the site module (it was deprecated in 3.4).
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Victor Stinner authored
repr(Handle) is shorter for function: "foo" instead of "<function foo at 0x...>". It now also includes the source of the callback, filename and line number where it was defined, if available. repr(Task) now also includes the current position in the code, filename and line number, if available. If the coroutine (generator) is done, the line number is omitted and "done" is added.
-
Victor Stinner authored
repr(Handle) is shorter for function: "foo" instead of "<function foo at 0x...>". It now also includes the source of the callback, filename and line number where it was defined, if available. repr(Task) now also includes the current position in the code, filename and line number, if available. If the coroutine (generator) is done, the line number is omitted and "done" is added.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
-
- 11 Jun, 2014 20 commits
-
-
R David Murray authored
-
Zachary Ware authored
-
Zachary Ware authored
-
R David Murray authored
-
R David Murray authored
I forgot to run all the affected tests when I fixed smtpd.
-
Zachary Ware authored
-
R David Murray authored
This worked by accident on Linux because the SOCK_STREAM was returned first, but on the FreeBSD the SOCK_DGRAM is first in the list.
-
R David Murray authored
Patch by Claudiu Popa.
-
R David Murray authored
Patch by Milan Oberkirch.
-
R David Murray authored
Eventually these will want to convert to decode_data=False, I think.
-
R David Murray authored
Otherwise smtpd is restricted to 7bit clean data, since even if the incoming data is actually utf-8, it will often break things to decode it before parsing the message. Patch by Maciej Szulik, with some adjustments (mostly the warning support).
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Serhiy Storchaka authored
(issues #21677, #21310).
-
Serhiy Storchaka authored
(issues #21677, #21310).
-
Giampaolo Rodola' authored
fix issue #17552: add socket.sendfile() method allowing to send a file over a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'·
-
- 10 Jun, 2014 11 commits
-
-
Serhiy Storchaka authored
flag has the value 'n'. Patch by Claudiu Popa.
-
Zachary Ware authored
-
Zachary Ware authored
Initial patch by Olive Kilburn.
-
Victor Stinner authored
must not be empty.
-
Victor Stinner authored
be empty.
-
Victor Stinner authored
-
Victor Stinner authored
Add BaseEventLoop._closed attribute and use it to check if the event loop was closed or not, instead of checking different attributes in each subclass of BaseEventLoop. run_forever() and run_until_complete() methods now raise a RuntimeError('Event loop is closed') exception if the event loop was closed. BaseProactorEventLoop.close() now also cancels "accept futures".
-
Victor Stinner authored
-
Victor Stinner authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
while still being written to. With no console, this closed Idle. Also add missing import and a few other changes.
-
- 09 Jun, 2014 2 commits
-
-
R David Murray authored
-
R David Murray authored
Patch by Milan Oberkirch.
-