diff options
author | Meador Inge <meadori@gmail.com> | 2012-02-05 06:27:40 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-02-05 06:27:40 (GMT) |
commit | 25e70fd13392023fd2e777986ad4a808533316bd (patch) | |
tree | bf00381ce303054db773ede329bf742eb941e88c | |
parent | acd51f9ea944504fd981ef552563b375acfcba40 (diff) | |
download | cpython-25e70fd13392023fd2e777986ad4a808533316bd.zip cpython-25e70fd13392023fd2e777986ad4a808533316bd.tar.gz cpython-25e70fd13392023fd2e777986ad4a808533316bd.tar.bz2 |
Issue #12142: Fixed reference cycle when importing ctypes
-rw-r--r-- | Lib/ctypes/_endian.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/_endian.py b/Lib/ctypes/_endian.py index e6b8556..f80e675 100644 --- a/Lib/ctypes/_endian.py +++ b/Lib/ctypes/_endian.py @@ -4,7 +4,7 @@ import sys from ctypes import * -_array_type = type(c_int * 3) +_array_type = type(Array) def _other_endian(typ): """Return the type with the 'other' byte order. Simple types like |