summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-02-05 06:27:40 (GMT)
committerMeador Inge <meadori@gmail.com>2012-02-05 06:27:40 (GMT)
commit25e70fd13392023fd2e777986ad4a808533316bd (patch)
treebf00381ce303054db773ede329bf742eb941e88c
parentacd51f9ea944504fd981ef552563b375acfcba40 (diff)
downloadcpython-25e70fd13392023fd2e777986ad4a808533316bd.zip
cpython-25e70fd13392023fd2e777986ad4a808533316bd.tar.gz
cpython-25e70fd13392023fd2e777986ad4a808533316bd.tar.bz2
Issue #12142: Fixed reference cycle when importing ctypes
-rw-r--r--Lib/ctypes/_endian.py2
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