summaryrefslogtreecommitdiffstats
path: root/_h5_m_mpublic_8h__incl.md5
diff options
context:
space:
mode:
Diffstat (limited to '_h5_m_mpublic_8h__incl.md5')
0 files changed, 0 insertions, 0 deletions
>Issue #26516: Fix test_capi on 32-bit systemVictor Stinner2016-03-141-11/+9 | | | | | | | | | | | | | | | | | | | | On 32-bit system, only 4 bytes after dumped for the tail. * | | | | Issue #26516: Fix test_capi on WindowsVictor Stinner2016-03-141-4/+8 | | | | | | | | | | | | | | | | | | | | Pointers are formatted differently. * | | | | Add PYTHONMALLOC env varVictor Stinner2016-03-141-0/+59 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #26516: * Add PYTHONMALLOC environment variable to set the Python memory allocators and/or install debug hooks. * PyMem_SetupDebugHooks() can now also be used on Python compiled in release mode. * The PYTHONMALLOCSTATS environment variable can now also be used on Python compiled in release mode. It now has no effect if set to an empty string. * In debug mode, debug hooks are now also installed on Python memory allocators when Python is configured without pymalloc. * | | | | Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22 |\ \ \ \ \ | |/ / / / | * | | | Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22 | | | | | * | | | | Issue #747320: Use email.utils.formatdate() to avoid code duplicationBerker Peksag2016-03-142-6/+16 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in BaseHTTPRequestHandler Initial patch by karlcow. * | | | | Issue #16181: cookiejar.http2time() now returns None if year is higher than ↵Berker Peksag2016-03-142-1/+8 |\ \ \ \ \ | |/ / / / | | | | | | | | | | datetime.MAXYEAR | * | | | Issue #16181: cookiejar.http2time() now returns None if year is higher than ↵Berker Peksag2016-03-142-1/+8 | | | | | | | | | | | | | | | | | | | | datetime.MAXYEAR * | | | | Issue #26513: Fixes platform module detection of Windows ServerSteve Dower2016-03-121-1/+1 |\ \ \ \ \ | |/ / / / | * | | | Issue #26513: Fixes platform module detection of Windows ServerSteve Dower2016-03-121-1/+1 | | | | | * | | | | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-122-7/+33 |\ \ \ \ \ | |/ / / / | | | | | | | | | | Tamás Bence Gedai. | * | | | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-122-7/+25 | | | | | | | | | | | | | | | | | | | | Tamás Bence Gedai. * | | | | Revert change 291d47954618Victor Stinner2016-03-121-2/+2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert: "Always test datetime.strftime("%4Y") Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900." In fact, strftime("%4Y") fails on most platforms. * | | | | Merge 3.5Victor Stinner2016-03-111-10/+10 |\ \ \ \ \ | |/ / / / | * | | | Issue #20589: Fix test_pathlibVictor Stinner2016-03-111-10/+10 | | | | | * | | | | Always test datetime.strftime("%4Y")Victor Stinner2016-03-111-2/+2 | | | | | | | | | | | | | | | | | | | | Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900. * | | | | Add Mock.assert_called()Victor Stinner2016-03-112-0/+39 | | | | | | | | | | | | | | | | | | | | | | | | | Issue #26323: Add assert_called() and assert_called_once() methods to unittest.mock.Mock. * | | | | Issue #20589: Invoking Path.owner() and Path.group() on Windows now raiseBerker Peksag2016-03-11 fix test_xmlrpclib for missing threading moduleVictor Stinner2010-04-271-3/+23 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | | | * | | | | Issue #7449, part 8: don't skip the whole test_asynchat if threading is missingVictor Stinner2010-04-271-79/+82 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TestFifo can be executed without the threading module | | | * | | | | Issue #7449, part 7: simplify threading detection in test_capiVictor Stinner2010-04-271-10/+6 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | | | * | | | | Issue #7449, part 6: fix test_hashlib for missing threading moduleVictor Stinner2010-04-271-4/+2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move @test_support.reap_thread decorator from test_main() to test_threaded_hashing(). | | | * | | | | Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newlineAntoine Pitrou2010-04-272-1/+5 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | before the certificate footer. Patch by Kyle VanderBeek. | | | * | | | | Issue #7449, part 5: split Test.test_open() of ctypes/test/test_errno.pyVictor Stinner2010-04-271-49/+57 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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() | | | * | | | | Issue #7449, part 4: skip test_multiprocessing if thread support is disabledVictor Stinner2010-04-271-3/+4 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | import threading after _multiprocessing to raise a more revelant error message: "No module named _multiprocessing". _multiprocessing is not compiled without thread support. | | | * | | | | Issue #7449 part 3, test_doctest: import trace module in test_coverage()Victor Stinner2010-04-271-1/+2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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'). | | | * | | | | Issue #7449, part 2: regrtest.py -j option requires thread supportVictor Stinner2010-04-27