- 25 Mar, 2016 2 kayıt (commit)
-
-
Zachary Ware yazdı
-
Victor Stinner yazdı
-
- 24 Mar, 2016 19 kayıt (commit)
-
-
Victor Stinner yazdı
Declare the function even if thread support is disabled.
-
Victor Stinner yazdı
Issue #26637: The importlib module now emits an ImportError rather than a TypeError if __import__() is tried during the Python shutdown process but sys.path is already cleared (set to None).
-
Victor Stinner yazdı
Issue #21925: warnings.formatwarning() now catches exceptions when calling linecache.getline() and tracemalloc.get_object_traceback() to be able to log ResourceWarning emitted late during the Python shutdown process.
-
Victor Stinner yazdı
Issue #21925: warnings.formatwarning() now catches exceptions on linecache.getline(...) to be able to log ResourceWarning emitted late during the Python shutdown process.
-
Victor Stinner yazdı
test_warnings: only run test_improper_option() and test_warnings_bootstrap() once. The unit test doesn't depend on self.module.
-
Victor Stinner yazdı
* Rename libregrtest.main_in_temp_cwd() to libregrtest.main() * Add regrtest.main_in_temp_cwd() alias to libregrtest.main() * Move old main_in_temp_cwd() code into libregrtest.Regrtest.main() * Update multiple scripts to call libregrtest.main()
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Move code into a new _main() function * Fix loop to cleanup sys.path * Remove unused import
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* add create_file() helper function * create files using "x" mode instead of "w" to detect when a previous test forget to remove a file * open file for writing in unbuferred mode (buffering=0) * replace "try/finally: unlink" with self.addCleanup(support.unlink) * register unlink cleanup function *before* creating new files
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Use context manager on urllib objects to ensure that they are closed on error * Use self.addCleanup() to cleanup resources even if a test is interrupted with CTRL+c
-
Victor Stinner yazdı
* Replace "try/finally: os.remove()" with self.addCleanup(support.unlink) or self.addCleanup(support.rmdir): the support function handles the case when the file doesn't exist * Replace "try/finally: f.close()" with "with open(...) as f:" * test_getsize: add a second test with a different size * Create file using "x" mode to ensure that the file didn't exist before, to detect bugs in tests * Open files in unbuffered mode (buferring=0) to write immediatly data on disk * Replace map() with simpler code * Split isdir() unit test into two units tests to make them less dependant, same change for isfile() test * test_samefile(): test also two different files
-
Victor Stinner yazdı
Issue #25911: * Try to fix test_os.BytesWalkTests on Windows * Try to mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat()
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Update code for the name regrtest output format. * Enhance also test_regrtest test on --fromfile
-
Victor Stinner yazdı
Issue #25911: Use support.check_warnings() to expect or ignore DeprecationWarning in test_os.
-
- 23 Mar, 2016 19 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26588: Optimize memory footprint of _tracemalloc before non-zero domain is used. Start with compact key (Py_uintptr_t) and also switch to pointer_t key when the first memory block with a non-zero domain is tracked.
-
Victor Stinner yazdı
On Windows, socket.setsockopt() raises an OverflowError if the socket option is larger than INT_MAX bytes.
-
Victor Stinner yazdı
Issue #18787: restore "bin" name in test_spwd but catch KeyError.
-
Victor Stinner yazdı
Ignore empty lines in stderr.
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Victor Stinner yazdı
Issue #18787: try to get the "root" entry which should exist on all UNIX instead of "bin" which doesn't exist on OpenIndiana.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
We know that Py_SIZE(b) is -1 or 1 an so fits into the sdigit type.
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Don't check if the dict key exists before getting the key. Instead get the key and handle error.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Restore the previous code for stack_overflow().
-