mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
more PY_LONG_LONG to long long
This commit is contained in:
parent
c71ec8aef3
commit
47ff0734b8
19 changed files with 81 additions and 281 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue