summaryrefslogtreecommitdiff
path: root/Lib/test/test_getargs2.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-08 09:15:54 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-08 09:15:54 -0700
commit47ff0734b817d293ae84603efad2f3f508d85f78 (patch)
tree4be3f7fa6164e1a3ca0e3a1b9fdd3a7b12f334c3 /Lib/test/test_getargs2.py
parentc71ec8aef37f8a72d1dc3237b127f15a32ba0997 (diff)
downloadcpython-git-47ff0734b817d293ae84603efad2f3f508d85f78.tar.gz
more PY_LONG_LONG to long long
Diffstat (limited to 'Lib/test/test_getargs2.py')
-rw-r--r--Lib/test/test_getargs2.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_getargs2.py b/Lib/test/test_getargs2.py
index 16e163a964..0fbe12dd14 100644
--- a/Lib/test/test_getargs2.py
+++ b/Lib/test/test_getargs2.py
@@ -5,10 +5,6 @@ from test import support
# Skip this test if the _testcapi module isn't available.
support.import_module('_testcapi')
from _testcapi import getargs_keywords, getargs_keyword_only
-try:
- from _testcapi import getargs_L, getargs_K
-except ImportError:
- getargs_L = None # PY_LONG_LONG not available
# > How about the following counterproposal. This also changes some of
# > the other format codes to be a little more regular.
@@ -309,7 +305,6 @@ class Signed_TestCase(unittest.TestCase):
self.assertRaises(OverflowError, getargs_n, VERY_LARGE)
-@unittest.skipIf(getargs_L is None, 'PY_LONG_LONG is not available')
class LongLong_TestCase(unittest.TestCase):
def test_L(self):
from _testcapi import getargs_L