- 22 Agu, 2010 15 kayıt (commit)
-
-
Brett Cannon yazdı
test_importlib is that it discovers special little race conditions. For instance, it turns out that importlib would throw an exception if two different Python processes both tried to create the __pycache__ directory as one process would succeed, causing the other process to fail as it didn't expect to get any "help". So now importlib simply stays calm and just accepts someone else did the work of creating the __pycache__ directory for it, moving on with life. Closes issue #9572.
-
Brett Cannon yazdı
imports with an empty string in sys.path.
-
Antoine Pitrou yazdı
(part of #9657)
-
Brett Cannon yazdı
importlib._bootstrap, add the optional methods for importlib.abc.SourceLoader for completeness.
-
Brett Cannon yazdı
variable the return value is assigned to is char *. Since the assigned-to variable is never changed, simply make that a const char * and cast all calls to get_history to const char * to silence the compiler warning (found with LLVM).
-
Georg Brandl yazdı
-
Daniel Stutzbach yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
getaddrinfo. Patch by David Watson.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Antoine Pitrou yazdı
(part of issue #9251)
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 21 Agu, 2010 16 kayıt (commit)
-
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Giampaolo Rodolà yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Antoine Pitrou yazdı
ignored by the buffered IO layer anymore.
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
fix issue #9129: added proper error handling when accepting new connections in SMTPServer.handle_accept
-
Senthil Kumaran yazdı
-
Marc-André Lemburg yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 20 Agu, 2010 5 kayıt (commit)
-
-
Victor Stinner yazdı
Write test.support.workaroundIssue8611() function so it will be easier to remove this workaround from all tests.
-
Victor Stinner yazdı
The test is still failing on "x86 FreeBSD 7.2 3.x" and "sparc solaris10 gcc 3.x" buildbots. It looks like the locale encoding is able to decode b'\xff'. I suppose that it is an encoding like 'iso-8859-1'. Use C locale to set, I hope, the locale encoding to 'ascii'. Display also the encoding so if the test fails, at least I will learn the locale encoding choosen for the C locale.
-
Victor Stinner yazdı
There are buildbot failures on "x86 FreeBSD 3.x" and "sparc solaris10 gcc 3.x". I suppose that _Py_char2wchar() doesn't fail even if the locale encoding is unable to decode the byte string, because _Py_char2wchar() has a special mode for platform without mbrtowc() (ISO C99) function. Let's check my theory by avoid error on the Python print() instruction.
-
Vinay Sajip yazdı
-
Tim Golden yazdı
-
- 19 Agu, 2010 4 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Amaury Forgeot d'Arc yazdı
Also remove one tab, and move a check closer to the possible failure.
-
Vinay Sajip yazdı
-
Senthil Kumaran yazdı
-