commit | 0e30317891c41ada25d5459644484aef0bc8e88c | [log] [tgz] |
---|---|---|
author | Meador Inge <meadori@gmail.com> | Fri Nov 25 22:25:06 2011 -0600 |
committer | Meador Inge <meadori@gmail.com> | Fri Nov 25 22:25:06 2011 -0600 |
tree | e53014a544288d79dcb8d51ed3882b779095e874 | |
parent | a5d5bb997b1cb8b5d8a33d67c505ceba3bc3d9e9 [diff] [blame] |
Issue #13380: add an internal function for resetting the ctypes caches
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index c5f19ad..5044ce4 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py
@@ -1076,6 +1076,13 @@ filecmp._cache.clear() struct._clearcache() doctest.master = None + try: + import ctypes + except ImportError: + # Don't worry about resetting the cache if ctypes is not supported + pass + else: + ctypes._reset_cache() # Collect cyclic trash. gc.collect()