Python Forum
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
there is no str.isspecial()
#11
whatever PyTypeObject's set to:
Quote:PyTypeObject
    The C structure of the objects used to describe built-in types.Unicode Type

These are the basic Unicode object types used for the Unicode implementation in Python:

Py_UCS4
Py_UCS2
Py_UCS1

    These types are typedefs for unsigned integer types wide enough to contain characters of 32 bits, 16 bits and 8 bits, respectively. When dealing with single Unicode characters, use Py_UCS4.

    New in version 3.3.

Py_UNICODE

    This is a typedef of wchar_t, which is a 16-bit type or 32-bit type depending on the platform.

    Changed in version 3.3: In previous versions, this was a 16-bit type or a 32-bit type depending on whether you selected a “narrow” or “wide” Unicode version of Python at build time.

PyASCIIObject
PyCompactUnicodeObject
PyUnicodeObject

    These subtypes of PyObject represent a Python Unicode object. In almost all cases, they shouldn’t be used directly, since all API functions that deal with Unicode objects take and return PyObject pointers.
    New in version 3.3.

PyTypeObject PyUnicode_Type
    This instance of PyTypeObject represents the Python Unicode type. It is exposed to Python code as str.
Reply


Messages In This Thread
there is no str.isspecial() - by Skaperen - Oct-02-2017, 12:08 AM
RE: there is no str.isspecial() - by metulburr - Oct-02-2017, 02:30 AM
RE: there is no str.isspecial() - by Skaperen - Oct-02-2017, 06:54 AM
RE: there is no str.isspecial() - by nilamo - Oct-04-2017, 04:34 PM
RE: there is no str.isspecial() - by DeaD_EyE - Oct-04-2017, 07:13 PM
RE: there is no str.isspecial() - by Skaperen - Oct-05-2017, 12:33 AM
RE: there is no str.isspecial() - by Larz60+ - Oct-05-2017, 12:37 AM
RE: there is no str.isspecial() - by Skaperen - Oct-05-2017, 04:08 AM
RE: there is no str.isspecial() - by sparkz_alot - Oct-05-2017, 12:44 AM
RE: there is no str.isspecial() - by Skaperen - Oct-05-2017, 02:26 AM
RE: there is no str.isspecial() - by Larz60+ - Oct-05-2017, 09:07 AM
RE: there is no str.isspecial() - by sparkz_alot - Oct-05-2017, 02:08 PM
RE: there is no str.isspecial() - by Skaperen - Oct-07-2017, 03:20 AM
RE: there is no str.isspecial() - by ichabod801 - Oct-07-2017, 03:25 AM
RE: there is no str.isspecial() - by Skaperen - Oct-08-2017, 03:08 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020