- 11 Tem, 2009 10 kayıt (commit)
-
-
Georg Brandl yazdı
-
Tarek Ziadé yazdı
-
Georg Brandl yazdı
-
Tarek Ziadé yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Amaury Forgeot d'Arc yazdı
According to #6358, python 3.0 has a different implementation that behaves differently.
-
Kristján Valur Jónsson yazdı
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 Tem, 2009 5 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Amaury Forgeot d'Arc yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
- 09 Tem, 2009 8 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 yazdı
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 yazdı
if the test gives useful failure info on Solaris buildbot.
-
R. David Murray yazdı
(I copied this from another import test, but currently this will fail if TESTFN ends up in /tmp...see issue 2609).
-
R. David Murray yazdı
and make sure we test resetting all three execute bits.
-
Tarek Ziadé yazdı
-
R. David Murray yazdı
-
R. David Murray yazdı
hopefully reveal the real problem.
-
- 08 Tem, 2009 1 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
- 07 Tem, 2009 9 kayıt (commit)
-
-
Mark Dickinson yazdı
make sure that out-of-range values consistently raise struct.error.
-
Mark Dickinson yazdı
reorganize the test_struct module to remove duplicated code and tests.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
R. David Murray yazdı
on Windows.
-
Kristján Valur Jónsson yazdı
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 yazdı
-
Alexandre Vassalotti yazdı
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.
-
R. David Murray yazdı
posix zap the execute bit in case it was set on the .py file, since the compiled files are not directly executable on posix. Patch by Marco N.
-
- 06 Tem, 2009 1 kayıt (commit)
-
-
Tarek Ziadé yazdı
Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option)
-
- 05 Tem, 2009 5 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
close_request() (which can send a socket.shutdown()) must be called by the child process in a forking server. The parent must merely close the socket handle.
-
Mark Dickinson yazdı
integer packing, and reenable some previously broken tests.
-
Alexandre Vassalotti yazdı
-
Alexandre Vassalotti yazdı
-
Alexandre Vassalotti yazdı
operator.sequenceIncludes. Patch contributed by Jeff Balogh (and updated slightly by me).
-
- 04 Tem, 2009 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-