Merged revisions 79661 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79661 | mark.dickinson | 2010-04-03 11:27:05 +0100 (Sat, 03 Apr 2010) | 14 lines

  Fix a couple of issues with the test_structmembersType class in _testcapimodule

   - rename to _test_structmembersType to avoid the class being automatically
     called by test_capi

   - allow space for trailing NUL in inplace_member field of all_structmembers

   - use T_STRING_INPLACE instead of T_INPLACE_STRING as keyword argument
     to _test_structmembersType initializer

   - don't attempt to initialize inplace_member field if T_STRING_INPLACE
     argument wasn't supplied.
........
This commit is contained in:
Mark Dickinson 2010-04-03 10:49:56 +00:00
parent 9c01e441bb
commit 5fc16b469e
2 changed files with 18 additions and 11 deletions

View file

@ -1,4 +1,4 @@
from _testcapi import test_structmembersType, \
from _testcapi import _test_structmembersType, \
CHAR_MAX, CHAR_MIN, UCHAR_MAX, \
SHRT_MAX, SHRT_MIN, USHRT_MAX, \
INT_MAX, INT_MIN, UINT_MAX, \
@ -9,7 +9,7 @@ from _testcapi import test_structmembersType, \
import unittest
from test import support
ts=test_structmembersType(False, # T_BOOL
ts=_test_structmembersType(False, # T_BOOL
1, # T_BYTE
2, # T_UBYTE
3, # T_SHORT