mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Merged revisions 76930 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76930 | mark.dickinson | 2009-12-20 15:57:56 +0000 (Sun, 20 Dec 2009) | 1 line Add missing tests for PyArg_Parse* with format 'h' ........
This commit is contained in:
parent
808ff2c9d1
commit
1554b18b5a
2 changed files with 26 additions and 1 deletions
|
|
@ -48,7 +48,8 @@ LARGE = 0x7FFFFFFF
|
|||
VERY_LARGE = 0xFF0000121212121212121242
|
||||
|
||||
from _testcapi import UCHAR_MAX, USHRT_MAX, UINT_MAX, ULONG_MAX, INT_MAX, \
|
||||
INT_MIN, LONG_MIN, LONG_MAX, PY_SSIZE_T_MIN, PY_SSIZE_T_MAX
|
||||
INT_MIN, LONG_MIN, LONG_MAX, PY_SSIZE_T_MIN, PY_SSIZE_T_MAX, \
|
||||
SHRT_MIN, SHRT_MAX
|
||||
|
||||
# fake, they are not defined in Python's header files
|
||||
LLONG_MAX = 2**63-1
|
||||
|
|
@ -135,6 +136,20 @@ class Unsigned_TestCase(unittest.TestCase):
|
|||
self.assertEqual(VERY_LARGE & ULONG_MAX, getargs_k(VERY_LARGE))
|
||||
|
||||
class Signed_TestCase(unittest.TestCase):
|
||||
def test_h(self):
|
||||
from _testcapi import getargs_h
|
||||
# h returns 'short', and does range checking (SHRT_MIN ... SHRT_MAX)
|
||||
self.assertRaises(TypeError, getargs_h, 3.14)
|
||||
self.assertEqual(99, getargs_h(Int()))
|
||||
|
||||
self.assertRaises(OverflowError, getargs_h, SHRT_MIN-1)
|
||||
self.assertEqual(SHRT_MIN, getargs_h(SHRT_MIN))
|
||||
self.assertEqual(SHRT_MAX, getargs_h(SHRT_MAX))
|
||||
self.assertRaises(OverflowError, getargs_h, SHRT_MAX+1)
|
||||
|
||||
self.assertEqual(42, getargs_h(42))
|
||||
self.assertRaises(OverflowError, getargs_h, VERY_LARGE)
|
||||
|
||||
def test_i(self):
|
||||
from _testcapi import getargs_i
|
||||
# i returns 'int', and does range checking (INT_MIN ... INT_MAX)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue