From 8582bb1ebd9a5951a790505e8b62d829b2b78326 Mon Sep 17 00:00:00 2001 From: Meador Inge Date: Sat, 4 Feb 2012 20:36:48 -0600 Subject: Issue #12142: Fixed reference cycle when importing ctypes --- Lib/ctypes/_endian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ctypes/_endian.py b/Lib/ctypes/_endian.py index 721b0d1..dae65fc 100644 --- a/Lib/ctypes/_endian.py +++ b/Lib/ctypes/_endian.py @@ -1,7 +1,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 -- cgit v0.12