- 12 Jul, 2009 4 commits
-
-
Kristján Valur Jónsson authored
Add more tests for the xlmrpc.ServerProxy
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Hirokazu Yamamoto authored
-
- 11 Jul, 2009 14 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Tarek Ziadé authored
-
Amaury Forgeot d'Arc authored
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
-
Georg Brandl authored
-
Tarek Ziadé authored
-
Georg Brandl authored
-
Tarek Ziadé authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Amaury Forgeot d'Arc authored
According to #6358, python 3.0 has a different implementation that behaves differently.
-
Kristján Valur Jónsson authored
Need to be careful with thread switching when testing the xmlrpc server. The server thread may not have updated stats when the client thread tests them.
-
- 10 Jul, 2009 5 commits
-
-
Ezio Melotti authored
-
Amaury Forgeot d'Arc authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
- 09 Jul, 2009 8 commits
-
-
Amaury Forgeot d'Arc authored
PIPE_BUF is not defined on Windows, and probably has no meaning there. Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
-
R. David Murray authored
cleanup. If this fix works, it means that Solaris is unique among our platforms in what happens when shutil.rmtree is called on the current working directory (ie: it doesn't work on Solaris, but it does everywhere else).
-
R. David Murray authored
if the test gives useful failure info on Solaris buildbot.
-
R. David Murray authored
(I copied this from another import test, but currently this will fail if TESTFN ends up in /tmp...see issue 2609).
-
R. David Murray authored
and make sure we test resetting all three execute bits.
-
Tarek Ziadé authored
-
R. David Murray authored
-
R. David Murray authored
hopefully reveal the real problem.
-
- 08 Jul, 2009 1 commit
-
-
Tarek Ziadé authored
-
- 07 Jul, 2009 8 commits
-
-
Mark Dickinson authored
make sure that out-of-range values consistently raise struct.error.
-
Mark Dickinson authored
reorganize the test_struct module to remove duplicated code and tests.
-
Mark Dickinson authored
-
Mark Dickinson authored
-
R. David Murray authored
on Windows.
-
Kristján Valur Jónsson authored
added the shutdown_request() which can perform shutdown before calling close. This is needed for the ForkingMixIn because different close semantics are required for child and parent process. shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request(). Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
-
Amaury Forgeot d'Arc authored
-
Alexandre Vassalotti authored
Without this change, test_unicode.UnicodeTest.test_codecs_utf7 crashes in debug mode. What happens is the unicode string u'\U000abcde' with a length of 1 encodes to the string '+2m/c3g-' of length 8. Since only 5 bytes is reserved in the buffer, a buffer overrun occurs.
-