summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Close ancient iocp branch.iocpGuido van Rossum2013-09-041-2/+2
* Merge default to iocp. But now please forget about this branch.Guido van Rossum2013-02-054-7/+219
|\
| * Disable tests for _accept_connection in Proactor test.Guido van Rossum2013-02-051-0/+4
| * Actually use _start_serving(). (Merge error probably.)Guido van Rossum2013-02-051-2/+1
| * Kill bad import of unix_events.Guido van Rossum2013-02-051-1/+0
| * Merge default -> default.Guido van Rossum2013-02-0512-950/+2398
| |\
| | * Merge iocp into default branch.Guido van Rossum2013-02-050-0/+0
| | |\ | |/ / |/| |
* | | Merge the rest of default into iocp.Guido van Rossum2013-02-0512-950/+2398
|\ \ \ | |_|/ |/| |
| * | Merge rev 300 into iocp branch.Guido van Rossum2013-02-053-186/+312
| |\ \
| * \ \ Merge default rev 299 into iocp. Babysteps.Guido van Rossum2013-02-052-3/+36
| |\ \ \
| * | | | Replace iocp_events.py by proactor_events.py and create windows_events.py.Richard Oudkerk2013-01-307-192/+225
| * | | | Recreate unix_events.py and move signal handling there.Richard Oudkerk2013-01-304-111/+141
| * | | | Rename unix_events.py to selector_events.py.Richard Oudkerk2013-01-304-22/+22
| * | | | Move BaseEventLoop to base_events.py.Richard Oudkerk2013-01-303-347/+354
| * | | | Rename EventLoop to AbstractEventLoop.Richard Oudkerk2013-01-302-4/+4
| * | | | Merge.Richard Oudkerk2013-01-307-151/+169
| |\ \ \ \
| * | | | | In curl.py and crawl.py, only use IocpEventLoop if available.Richard Oudkerk2013-01-302-6/+14
| * | | | | Merge.Richard Oudkerk2013-01-288-161/+1528
| |\ \ \ \ \
| | * | | | | Ignore ERROR_CONNECTION_ABORTED if transport has been closed.Richard Oudkerk2013-01-285-117/+121
| | * | | | | Stop using SetFileCompletionNotificationModes() since not available on WinXPRichard Oudkerk2013-01-283-124/+127
| | * | | | | Merge default -> iocp (mostly test improvements).Guido van Rossum2013-01-255-21/+192
| | |\ \ \ \ \
| | * \ \ \ \ \ Dummy merge.Richard Oudkerk2013-01-257-242/+1602
| | |\ \ \ \ \ \
| | | * \ \ \ \ \ Merge.Richard Oudkerk2013-01-258-242/+1608
| | | |\ \ \ \ \ \
| | | | * | | | | | Replace IocpSelector with IocpEventLoop, and refactor UnixEventLoop.Richard Oudkerk2013-01-255-648/+583
| | | | * | | | | | Prevent sendall() from doing partial write without error.Richard Oudkerk2013-01-242-5/+15
| | | | * | | | | | Only use overlapped IO as a fallback when non-blocking read/write fails.Richard Oudkerk2013-01-241-31/+45
| | | | * | | | | | Merge default - iocp.Guido van Rossum2013-01-237-5/+1406
| | | | |\ \ \ \ \ \
| | | | | * | | | | | No signals on Windows, really.Guido van Rossum2013-01-232-1/+6
| | | | | * | | | | | Merge.Richard Oudkerk2013-01-217-7/+1414
| | | | | |\ \ \ \ \ \
| | | | | | * | | | | | New experimental iocp branch.Richard Oudkerk2013-01-217-7/+1414
| | | | | | | | | | | * Increase test coverage of tasks.py to 100%Nikolay Kim2013-02-052-4/+214
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Add a few comments.Guido van Rossum2013-02-051-0/+3
* | | | | | | | | | | Handler comparison operationsNikolay Kim2013-02-042-2/+95
* | | | | | | | | | | remove test_utils.sync decoratorNikolay Kim2013-02-042-51/+56
* | | | | | | | | | | EventLoopPolicy testsNikolay Kim2013-02-041-2/+55
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Allow to use existing socket object with start_serving and create_connection ...Nikolay Kim2013-02-013-178/+301
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Add event_loop parameter to Task ctorNikolay Kim2013-02-012-3/+36
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Use pep8 naming style for test namesNikolay Kim2013-01-297-144/+162
|/ / / / / / /
* | | | | | | Get rid of unneeded continue.Guido van Rossum2013-01-281-1/+0
| |_|_|_|_|/ |/| | | | |
* | | | | | Fix missing import in test_utils.py.Guido van Rossum2013-01-251-0/+1
* | | | | | http_client.StreamReader testsNikolay Kim2013-01-252-19/+150
* | | | | | MergeGuido van Rossum2013-01-254-2/+41
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Logging tweaks for tests.Guido van Rossum2013-01-254-2/+41
| |/ / / /
* | | | | Disable subprocess_test on Windows.Richard Oudkerk2013-01-251-0/+6
|/ / / /
* | | | load tests from *_test.py filesNikolay Kim2013-01-242-3/+6
* | | | Redirect if path to directory without trailing slash detected.Guido van Rossum2013-01-241-4/+10
* | | | Log exceptions when they occur.Guido van Rossum2013-01-241-0/+2
* | | | Fix trailing whitespace.Guido van Rossum2013-01-242-2/+2
* | | | Fix relative url following.Guido van Rossum2013-01-241-5/+5
* | | | Serve from the current filesystem.Guido van Rossum2013-01-241-6/+51
|/ / /