summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-10-21 10:40:32 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-10-21 10:40:32 +0200
commitbc25e52379a37b393b00f38242d27df166cca1f5 (patch)
treea3299a4f69c2a04776e44794d4beac2f7ae002c9
parent47db0f976afdac2c09420a2ebc903dd6670eb490 (diff)
downloadcython-bc25e52379a37b393b00f38242d27df166cca1f5.tar.gz
Correct buildenv test output.
-rw-r--r--tests/compile/buildenv.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile/buildenv.pyx b/tests/compile/buildenv.pyx
index 722309e5b..d93631358 100644
--- a/tests/compile/buildenv.pyx
+++ b/tests/compile/buildenv.pyx
@@ -96,7 +96,7 @@ PyLong_MASK {PyLong_MASK:X}
PyLong_SHIFT {PyLong_SHIFT}
sizeof(digit) {sizeof(digit)}
sizeof(sdigit) {sizeof(sdigit)}
-sys.getsize(1, 2**14, 2**15, 2**29, 2**30, 2**59, 2**60, 2**64) {tuple(sys.getsizeof(n) for n in (1, 2**14, 2**15, 2**29, 2**30, 2**59, 2**60, 2**64))}
+sys.getsizeof(1, 2**14, 2**15, 2**29, 2**30, 2**59, 2**60, 2**64) {tuple(sys.getsizeof(n) for n in (1, 2**14, 2**15, 2**29, 2**30, 2**59, 2**60, 2**64))}
SIZEOF_INT {SIZEOF_INT} ({sizeof(int)})
SIZEOF_LONG {SIZEOF_LONG} ({sizeof(long)})