- 30 Nis, 2010 3 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Antoine Pitrou: is my version of the paragraph still correct? R. David Murray: is this more understandable than the previous version?
-
Andrew M. Kuchling yazdı
-
- 29 Nis, 2010 10 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
Senthil Kumaran yazdı
-
Ezio Melotti yazdı
Group the Windows entries in getfilesystemencoding doc, move the win 9x one at the bottom of the list and fix some markup.
-
Lars Gustäbel yazdı
files with execute permissions set.
-
Antoine Pitrou yazdı
of the Linux kernel. Patch by Yaniv Aknin.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Markup fixes to use :exc:, :option: in a few places. (Glitch: unittest.main's -c ends up a link to the Python interpreter's -c option. Should we skip using :option: for that switch, or disable the auto-linking somehow?)
-
Andrew M. Kuchling yazdı
-
- 28 Nis, 2010 9 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
and remove a duplicate of its specification.
-
Senthil Kumaran yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead of '-c' while searching for the module to be executed
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro)
-
Jesus Cea yazdı
-
- 27 Nis, 2010 18 kayıt (commit)
-
-
Victor Stinner yazdı
* Use try/except ImportError or test_support.import_module() to import thread and threading modules * Add @unittest.skipUnless(threading, ...) to testcases using threads
-
Victor Stinner yazdı
Use test_support.import_module() instead of import to raise a SkipTest exception if the import fail. Import trace fails if the threading module is missing. See also part 3: test_doctest: import trace module in test_coverage().
-
Victor Stinner yazdı
Rewrite r80556: the thread test have to be executed just after the test on libc_open() and so the test cannot be splitted in two functions (without duplicating code, and I don't want to duplicate code).
-
Victor Stinner yazdı
* Skip testcases using threads if threading module is missing * Use "http://" instead of URL in ServerProxyTestCase if threading is missing because URL is not set in this case
-
Victor Stinner yazdı
TestFifo can be executed without the threading module
-
Victor Stinner yazdı
* Skip TestPendingCalls if threading module is missing * Test if threading module is present or not, instead of test the presence of _testcapi._test_thread_state
-
Victor Stinner yazdı
Move @test_support.reap_thread decorator from test_main() to test_threaded_hashing().
-
Benjamin Peterson yazdı
-
Antoine Pitrou yazdı
before the certificate footer. Patch by Kyle VanderBeek.
-
Victor Stinner yazdı
* Split Test.test_open() in 2 functions: test_open() and test_thread_open() * Skip test_open() and test_thread_open() if we are unable to find the C library * Skip test_thread_open() if thread support is disabled * Use unittest.skipUnless(os.name == "nt", ...) on test_GetLastError()
-
Victor Stinner yazdı
import threading after _multiprocessing to raise a more revelant error message: "No module named _multiprocessing". _multiprocessing is not compiled without thread support.
-
Victor Stinner yazdı
Import trace module fail if the threading module is missing. test_coverage() is only used if test_doctest.py is used with the -c option. This commit allows to execute the test suite without thread support. Move "import trace" in test_coverage() and use test_support.import_module('trace').
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-