You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1119 lines
44 KiB

Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r60790 | raymond.hettinger | 2008-02-14 10:32:45 +0100 (Thu, 14 Feb 2008) | 4 lines Add diagnostic message to help figure-out why SocketServer tests occasionally crash when trying to remove a pid that in not in the activechildren list. ........ r60791 | raymond.hettinger | 2008-02-14 11:46:57 +0100 (Thu, 14 Feb 2008) | 1 line Add fixed-point examples to the decimal FAQ ........ r60792 | raymond.hettinger | 2008-02-14 12:01:10 +0100 (Thu, 14 Feb 2008) | 1 line Improve rst markup ........ r60794 | raymond.hettinger | 2008-02-14 12:57:25 +0100 (Thu, 14 Feb 2008) | 1 line Show how to remove exponents. ........ r60795 | raymond.hettinger | 2008-02-14 13:05:42 +0100 (Thu, 14 Feb 2008) | 1 line Fix markup. ........ r60797 | christian.heimes | 2008-02-14 13:47:33 +0100 (Thu, 14 Feb 2008) | 1 line Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. ........ r60798 | raymond.hettinger | 2008-02-14 13:49:37 +0100 (Thu, 14 Feb 2008) | 1 line Simplify moneyfmt() recipe. ........ r60810 | raymond.hettinger | 2008-02-14 20:02:39 +0100 (Thu, 14 Feb 2008) | 1 line Fix markup ........ r60811 | raymond.hettinger | 2008-02-14 20:30:30 +0100 (Thu, 14 Feb 2008) | 1 line No need to register subclass of ABCs. ........ r60814 | thomas.heller | 2008-02-14 22:00:28 +0100 (Thu, 14 Feb 2008) | 1 line Try to correct a markup error that does hide the following paragraph. ........ r60822 | christian.heimes | 2008-02-14 23:40:11 +0100 (Thu, 14 Feb 2008) | 1 line Use a static and interned string for __subclasscheck__ and __instancecheck__ as suggested by Thomas Heller in #2115 ........ r60827 | christian.heimes | 2008-02-15 07:57:08 +0100 (Fri, 15 Feb 2008) | 1 line Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. ........ r60830 | christian.heimes | 2008-02-15 09:20:11 +0100 (Fri, 15 Feb 2008) | 2 lines Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ Thanks to Thomas Herve for the fix. ........ r60835 | eric.smith | 2008-02-15 13:14:32 +0100 (Fri, 15 Feb 2008) | 1 line In PyNumber_ToBase, changed from an assert to returning an error when PyObject_Index() returns something other than an int or long. It should never be possible to trigger this, as PyObject_Index checks to make sure it returns an int or long. ........ r60837 | skip.montanaro | 2008-02-15 20:03:59 +0100 (Fri, 15 Feb 2008) | 8 lines Two new functions: * place_summary_first copies the regrtest summary to the front of the file making it easier to scan quickly for problems. * count_failures gets the actual count of the number of failing tests, not just a 1 (some failures) or 0 (no failures). ........ r60840 | raymond.hettinger | 2008-02-15 22:21:25 +0100 (Fri, 15 Feb 2008) | 1 line Update example to match the current syntax. ........ r60841 | amaury.forgeotdarc | 2008-02-15 22:22:45 +0100 (Fri, 15 Feb 2008) | 8 lines Issue #2115: __slot__ attributes setting was 10x slower. Also correct a possible crash using ABCs. This change is exactly the same as an optimisation done 5 years ago, but on slot *access*: http://svn.python.org/view?view=rev&rev=28297 ........ r60842 | amaury.forgeotdarc | 2008-02-15 22:27:44 +0100 (Fri, 15 Feb 2008) | 2 lines Temporarily let these tests pass ........ r60843 | kurt.kaiser | 2008-02-15 22:56:36 +0100 (Fri, 15 Feb 2008) | 2 lines ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat. ........ r60844 | kurt.kaiser | 2008-02-15 23:25:09 +0100 (Fri, 15 Feb 2008) | 4 lines Configured selection highlighting colors were ignored; updating highlighting in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat. ........ r60845 | amaury.forgeotdarc | 2008-02-15 23:44:20 +0100 (Fri, 15 Feb 2008) | 9 lines Re-enable tests, they were failing since gc.collect() clears the various freelists. They still remain fragile. For example, a call to assertEqual currently does not make any allocation (which surprised me at first). But this can change when gc.collect also deletes the numerous "zombie frames" attached to each function. ........
18 years ago
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r60790 | raymond.hettinger | 2008-02-14 10:32:45 +0100 (Thu, 14 Feb 2008) | 4 lines Add diagnostic message to help figure-out why SocketServer tests occasionally crash when trying to remove a pid that in not in the activechildren list. ........ r60791 | raymond.hettinger | 2008-02-14 11:46:57 +0100 (Thu, 14 Feb 2008) | 1 line Add fixed-point examples to the decimal FAQ ........ r60792 | raymond.hettinger | 2008-02-14 12:01:10 +0100 (Thu, 14 Feb 2008) | 1 line Improve rst markup ........ r60794 | raymond.hettinger | 2008-02-14 12:57:25 +0100 (Thu, 14 Feb 2008) | 1 line Show how to remove exponents. ........ r60795 | raymond.hettinger | 2008-02-14 13:05:42 +0100 (Thu, 14 Feb 2008) | 1 line Fix markup. ........ r60797 | christian.heimes | 2008-02-14 13:47:33 +0100 (Thu, 14 Feb 2008) | 1 line Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. ........ r60798 | raymond.hettinger | 2008-02-14 13:49:37 +0100 (Thu, 14 Feb 2008) | 1 line Simplify moneyfmt() recipe. ........ r60810 | raymond.hettinger | 2008-02-14 20:02:39 +0100 (Thu, 14 Feb 2008) | 1 line Fix markup ........ r60811 | raymond.hettinger | 2008-02-14 20:30:30 +0100 (Thu, 14 Feb 2008) | 1 line No need to register subclass of ABCs. ........ r60814 | thomas.heller | 2008-02-14 22:00:28 +0100 (Thu, 14 Feb 2008) | 1 line Try to correct a markup error that does hide the following paragraph. ........ r60822 | christian.heimes | 2008-02-14 23:40:11 +0100 (Thu, 14 Feb 2008) | 1 line Use a static and interned string for __subclasscheck__ and __instancecheck__ as suggested by Thomas Heller in #2115 ........ r60827 | christian.heimes | 2008-02-15 07:57:08 +0100 (Fri, 15 Feb 2008) | 1 line Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. ........ r60830 | christian.heimes | 2008-02-15 09:20:11 +0100 (Fri, 15 Feb 2008) | 2 lines Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ Thanks to Thomas Herve for the fix. ........ r60835 | eric.smith | 2008-02-15 13:14:32 +0100 (Fri, 15 Feb 2008) | 1 line In PyNumber_ToBase, changed from an assert to returning an error when PyObject_Index() returns something other than an int or long. It should never be possible to trigger this, as PyObject_Index checks to make sure it returns an int or long. ........ r60837 | skip.montanaro | 2008-02-15 20:03:59 +0100 (Fri, 15 Feb 2008) | 8 lines Two new functions: * place_summary_first copies the regrtest summary to the front of the file making it easier to scan quickly for problems. * count_failures gets the actual count of the number of failing tests, not just a 1 (some failures) or 0 (no failures). ........ r60840 | raymond.hettinger | 2008-02-15 22:21:25 +0100 (Fri, 15 Feb 2008) | 1 line Update example to match the current syntax. ........ r60841 | amaury.forgeotdarc | 2008-02-15 22:22:45 +0100 (Fri, 15 Feb 2008) | 8 lines Issue #2115: __slot__ attributes setting was 10x slower. Also correct a possible crash using ABCs. This change is exactly the same as an optimisation done 5 years ago, but on slot *access*: http://svn.python.org/view?view=rev&rev=28297 ........ r60842 | amaury.forgeotdarc | 2008-02-15 22:27:44 +0100 (Fri, 15 Feb 2008) | 2 lines Temporarily let these tests pass ........ r60843 | kurt.kaiser | 2008-02-15 22:56:36 +0100 (Fri, 15 Feb 2008) | 2 lines ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat. ........ r60844 | kurt.kaiser | 2008-02-15 23:25:09 +0100 (Fri, 15 Feb 2008) | 4 lines Configured selection highlighting colors were ignored; updating highlighting in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat. ........ r60845 | amaury.forgeotdarc | 2008-02-15 23:44:20 +0100 (Fri, 15 Feb 2008) | 9 lines Re-enable tests, they were failing since gc.collect() clears the various freelists. They still remain fragile. For example, a call to assertEqual currently does not make any allocation (which surprised me at first). But this can change when gc.collect also deletes the numerous "zombie frames" attached to each function. ........
18 years ago
Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line #6513: fix example code: warning categories are classes, not instances. ........ r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line #6489: fix an ambiguity in getiterator() documentation. ........ r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line remove docs for deprecated -p option ........ r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line use bools ........ r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line Fix arg types of et#. ........ r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line Dont put "void" in signature for nullary functions. ........ r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line #6571: add index entries for more operators. ........ r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line #6593: fix link targets. ........ r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line #6591: add reference to ioctl in fcntl module for platforms other than Windows. ........ r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line Add a link to readline, and mention IPython and bpython. ........ r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line Fix some markup and small factual glitches found by M. Markert. ........ r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line Fix a few markup glitches. ........ r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better. ........
17 years ago
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line Change to tutorial wording for reading text / binary files on Windows. Issue #6301. ........ r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. ........ r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712. ........ r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line Tutorial tweaks. Issue 6849. ........ r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. ........ r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line Typo fix. ........ r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. ........ r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line Remove an extraneous space in unittest documentation. ........ r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line #6908: fix association of hashlib hash attributes. ........ r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line Py_SetPythonHome uses static storage #6913 ........ r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line Add Armin Ronacher. ........ r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line kill bare except ........ r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line pep 8 defaults ........ r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line rationalize a bit ........ r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line #6932: remove paragraph that advises relying on __del__ being called. ........ r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line use macros ........ r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line #6936: for interactive use, quit() is just fine. ........ r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line #6905: use better exception messages in inspect when the argument is of the wrong type. ........ r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line #6938: "ident" is always a string, so use a format code which works. ........ r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line Use str.format() to fix beginner's mistake with %-style string formatting. ........ r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line Optimize optimization and fix method name in docstring. ........ r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line #6925: rewrite docs for locals() and vars() a bit. ........ r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line #6930: clarify description about byteorder handling in UTF decoder routines. ........ r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. ........ r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line Update bug tracker reference. ........ r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line #6946: fix duplicate index entries for datetime classes. ........ r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line Fix references to threading.enumerate(). ........ r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line Add Doug. ........ r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line Add Mark Summerfield. ........ r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line Fix encoding name. ........ r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line Fixed a typo, and added sections on optimization and using arbitrary objects as messages. ........ r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line fix typos/rephrase ........ r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line comment out ugly xxx ........ r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line Tidied up name of parameter in StreamHandler ........ r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956. ........ r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line Documentation improvement for load_tests protocol in unittest. Issue 6515. ........ r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines Patch from Thomas Barr so that csv.Sniffer will set doublequote property. Closes issue 6606. ........ r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line Issue #7014: logging: Improved IronPython 2.6 compatibility. ........ r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines Issue 7008: Better document str.title and show how to work around the apostrophe problem. ........ r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line test logging ........
17 years ago
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line Change to tutorial wording for reading text / binary files on Windows. Issue #6301. ........ r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. ........ r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712. ........ r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line Tutorial tweaks. Issue 6849. ........ r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. ........ r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line Typo fix. ........ r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. ........ r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line Remove an extraneous space in unittest documentation. ........ r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line #6908: fix association of hashlib hash attributes. ........ r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line Py_SetPythonHome uses static storage #6913 ........ r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line Add Armin Ronacher. ........ r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line kill bare except ........ r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line pep 8 defaults ........ r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line rationalize a bit ........ r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line #6932: remove paragraph that advises relying on __del__ being called. ........ r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line use macros ........ r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line #6936: for interactive use, quit() is just fine. ........ r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line #6905: use better exception messages in inspect when the argument is of the wrong type. ........ r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line #6938: "ident" is always a string, so use a format code which works. ........ r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line Use str.format() to fix beginner's mistake with %-style string formatting. ........ r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line Optimize optimization and fix method name in docstring. ........ r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line #6925: rewrite docs for locals() and vars() a bit. ........ r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line #6930: clarify description about byteorder handling in UTF decoder routines. ........ r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. ........ r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line Update bug tracker reference. ........ r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line #6946: fix duplicate index entries for datetime classes. ........ r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line Fix references to threading.enumerate(). ........ r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line Add Doug. ........ r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line Add Mark Summerfield. ........ r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line Fix encoding name. ........ r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line Fixed a typo, and added sections on optimization and using arbitrary objects as messages. ........ r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line fix typos/rephrase ........ r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line comment out ugly xxx ........ r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line Tidied up name of parameter in StreamHandler ........ r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956. ........ r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line Documentation improvement for load_tests protocol in unittest. Issue 6515. ........ r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines Patch from Thomas Barr so that csv.Sniffer will set doublequote property. Closes issue 6606. ........ r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line Issue #7014: logging: Improved IronPython 2.6 compatibility. ........ r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines Issue 7008: Better document str.title and show how to work around the apostrophe problem. ........ r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line test logging ........
17 years ago
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line Change to tutorial wording for reading text / binary files on Windows. Issue #6301. ........ r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. ........ r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712. ........ r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line Tutorial tweaks. Issue 6849. ........ r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. ........ r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line Typo fix. ........ r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. ........ r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line Remove an extraneous space in unittest documentation. ........ r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line #6908: fix association of hashlib hash attributes. ........ r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line Py_SetPythonHome uses static storage #6913 ........ r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line Add Armin Ronacher. ........ r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line kill bare except ........ r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line pep 8 defaults ........ r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line rationalize a bit ........ r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line #6932: remove paragraph that advises relying on __del__ being called. ........ r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line use macros ........ r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line #6936: for interactive use, quit() is just fine. ........ r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line #6905: use better exception messages in inspect when the argument is of the wrong type. ........ r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line #6938: "ident" is always a string, so use a format code which works. ........ r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line Use str.format() to fix beginner's mistake with %-style string formatting. ........ r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line Optimize optimization and fix method name in docstring. ........ r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line #6925: rewrite docs for locals() and vars() a bit. ........ r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line #6930: clarify description about byteorder handling in UTF decoder routines. ........ r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. ........ r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line Update bug tracker reference. ........ r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line #6946: fix duplicate index entries for datetime classes. ........ r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line Fix references to threading.enumerate(). ........ r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line Add Doug. ........ r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line Add Mark Summerfield. ........ r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line Fix encoding name. ........ r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line Fixed a typo, and added sections on optimization and using arbitrary objects as messages. ........ r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line fix typos/rephrase ........ r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line comment out ugly xxx ........ r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line Tidied up name of parameter in StreamHandler ........ r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956. ........ r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line Documentation improvement for load_tests protocol in unittest. Issue 6515. ........ r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines Patch from Thomas Barr so that csv.Sniffer will set doublequote property. Closes issue 6606. ........ r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line Issue #7014: logging: Improved IronPython 2.6 compatibility. ........ r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines Issue 7008: Better document str.title and show how to work around the apostrophe problem. ........ r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line test logging ........
17 years ago
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line Change to tutorial wording for reading text / binary files on Windows. Issue #6301. ........ r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. ........ r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712. ........ r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line Tutorial tweaks. Issue 6849. ........ r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. ........ r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line Typo fix. ........ r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. ........ r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line Remove an extraneous space in unittest documentation. ........ r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line #6908: fix association of hashlib hash attributes. ........ r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line Py_SetPythonHome uses static storage #6913 ........ r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line Add Armin Ronacher. ........ r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line kill bare except ........ r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line pep 8 defaults ........ r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line rationalize a bit ........ r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line #6932: remove paragraph that advises relying on __del__ being called. ........ r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line use macros ........ r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line #6936: for interactive use, quit() is just fine. ........ r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line #6905: use better exception messages in inspect when the argument is of the wrong type. ........ r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line #6938: "ident" is always a string, so use a format code which works. ........ r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line Use str.format() to fix beginner's mistake with %-style string formatting. ........ r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line Optimize optimization and fix method name in docstring. ........ r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line #6925: rewrite docs for locals() and vars() a bit. ........ r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line #6930: clarify description about byteorder handling in UTF decoder routines. ........ r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. ........ r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line Update bug tracker reference. ........ r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line #6946: fix duplicate index entries for datetime classes. ........ r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line Fix references to threading.enumerate(). ........ r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line Add Doug. ........ r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line Add Mark Summerfield. ........ r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line Fix encoding name. ........ r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line Fixed a typo, and added sections on optimization and using arbitrary objects as messages. ........ r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line fix typos/rephrase ........ r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line comment out ugly xxx ........ r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line Tidied up name of parameter in StreamHandler ........ r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956. ........ r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line Documentation improvement for load_tests protocol in unittest. Issue 6515. ........ r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines Patch from Thomas Barr so that csv.Sniffer will set doublequote property. Closes issue 6606. ........ r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line Issue #7014: logging: Improved IronPython 2.6 compatibility. ........ r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines Issue 7008: Better document str.title and show how to work around the apostrophe problem. ........ r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line test logging ........
17 years ago
Merged revisions 71920-71923,71925-71929,71931-71934,71937 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71920 | jeroen.ruigrok | 2009-04-25 21:44:55 +0200 (za, 25 apr 2009) | 5 lines Issue #4129: More documentation pointers about int -> Py_ssize_t. Also fix up the documentation for PyObject_GC_Resize(). It seems that since it first got documented, the documentation was actually for _PyObject_GC_Resize(). ........ r71921 | jeroen.ruigrok | 2009-04-25 21:46:19 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: Documentation notes for int -> Py_ssize_t changes. ........ r71922 | jeroen.ruigrok | 2009-04-25 21:49:05 +0200 (za, 25 apr 2009) | 2 lines Reformat, since I've been busy here anyway. ........ r71923 | jeroen.ruigrok | 2009-04-25 21:54:34 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: Add a versionchanged notice for a few forgotten entries. ........ r71925 | jeroen.ruigrok | 2009-04-25 22:37:39 +0200 (za, 25 apr 2009) | 2 lines Since it's a macro, actually refer to it as such instead of function. ........ r71926 | jeroen.ruigrok | 2009-04-25 22:40:10 +0200 (za, 25 apr 2009) | 2 lines Reformat prior to editing. ........ r71927 | jeroen.ruigrok | 2009-04-25 22:41:40 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: int -> Py_ssize_t documentation. ........ r71928 | jeroen.ruigrok | 2009-04-25 22:43:30 +0200 (za, 25 apr 2009) | 2 lines Reformat prior to editing. ........ r71929 | jeroen.ruigrok | 2009-04-25 22:44:58 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: int -> Py_ssize_t documentation. ........ r71931 | jeroen.ruigrok | 2009-04-25 22:50:27 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: int -> Py_ssize_t documentation. ........ r71932 | jeroen.ruigrok | 2009-04-25 22:55:39 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: more int -> Py_ssize_t documentation. ........ r71933 | jeroen.ruigrok | 2009-04-25 22:58:35 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: more int -> Py_ssize_t documentation. ........ r71934 | jeroen.ruigrok | 2009-04-25 23:02:34 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: field changed from int to Py_ssize_t. ........ r71937 | jeroen.ruigrok | 2009-04-25 23:16:05 +0200 (za, 25 apr 2009) | 2 lines Issue #4129: document int -> Py_ssize_t changes. ........
17 years ago
  1. .. highlightlang:: c
  2. .. _unicodeobjects:
  3. Unicode Objects and Codecs
  4. --------------------------
  5. .. sectionauthor:: Marc-Andre Lemburg <mal@lemburg.com>
  6. Unicode Objects
  7. ^^^^^^^^^^^^^^^
  8. Unicode Type
  9. """"""""""""
  10. These are the basic Unicode object types used for the Unicode implementation in
  11. Python:
  12. .. c:type:: Py_UNICODE
  13. This type represents the storage type which is used by Python internally as
  14. basis for holding Unicode ordinals. Python's default builds use a 16-bit type
  15. for :c:type:`Py_UNICODE` and store Unicode values internally as UCS2. It is also
  16. possible to build a UCS4 version of Python (most recent Linux distributions come
  17. with UCS4 builds of Python). These builds then use a 32-bit type for
  18. :c:type:`Py_UNICODE` and store Unicode data internally as UCS4. On platforms
  19. where :c:type:`wchar_t` is available and compatible with the chosen Python
  20. Unicode build variant, :c:type:`Py_UNICODE` is a typedef alias for
  21. :c:type:`wchar_t` to enhance native platform compatibility. On all other
  22. platforms, :c:type:`Py_UNICODE` is a typedef alias for either :c:type:`unsigned
  23. short` (UCS2) or :c:type:`unsigned long` (UCS4).
  24. Note that UCS2 and UCS4 Python builds are not binary compatible. Please keep
  25. this in mind when writing extensions or interfaces.
  26. .. c:type:: PyUnicodeObject
  27. This subtype of :c:type:`PyObject` represents a Python Unicode object.
  28. .. c:var:: PyTypeObject PyUnicode_Type
  29. This instance of :c:type:`PyTypeObject` represents the Python Unicode type. It
  30. is exposed to Python code as ``str``.
  31. The following APIs are really C macros and can be used to do fast checks and to
  32. access internal read-only data of Unicode objects:
  33. .. c:function:: int PyUnicode_Check(PyObject *o)
  34. Return true if the object *o* is a Unicode object or an instance of a Unicode
  35. subtype.
  36. .. c:function:: int PyUnicode_CheckExact(PyObject *o)
  37. Return true if the object *o* is a Unicode object, but not an instance of a
  38. subtype.
  39. .. c:function:: Py_ssize_t PyUnicode_GET_SIZE(PyObject *o)
  40. Return the size of the object. *o* has to be a :c:type:`PyUnicodeObject` (not
  41. checked).
  42. .. c:function:: Py_ssize_t PyUnicode_GET_DATA_SIZE(PyObject *o)
  43. Return the size of the object's internal buffer in bytes. *o* has to be a
  44. :c:type:`PyUnicodeObject` (not checked).
  45. .. c:function:: Py_UNICODE* PyUnicode_AS_UNICODE(PyObject *o)
  46. Return a pointer to the internal :c:type:`Py_UNICODE` buffer of the object. *o*
  47. has to be a :c:type:`PyUnicodeObject` (not checked).
  48. .. c:function:: const char* PyUnicode_AS_DATA(PyObject *o)
  49. Return a pointer to the internal buffer of the object. *o* has to be a
  50. :c:type:`PyUnicodeObject` (not checked).
  51. .. c:function:: int PyUnicode_ClearFreeList()
  52. Clear the free list. Return the total number of freed items.
  53. Unicode Character Properties
  54. """"""""""""""""""""""""""""
  55. Unicode provides many different character properties. The most often needed ones
  56. are available through these macros which are mapped to C functions depending on
  57. the Python configuration.
  58. .. c:function:: int Py_UNICODE_ISSPACE(Py_UNICODE ch)
  59. Return 1 or 0 depending on whether *ch* is a whitespace character.
  60. .. c:function:: int Py_UNICODE_ISLOWER(Py_UNICODE ch)
  61. Return 1 or 0 depending on whether *ch* is a lowercase character.
  62. .. c:function:: int Py_UNICODE_ISUPPER(Py_UNICODE ch)
  63. Return 1 or 0 depending on whether *ch* is an uppercase character.
  64. .. c:function:: int Py_UNICODE_ISTITLE(Py_UNICODE ch)
  65. Return 1 or 0 depending on whether *ch* is a titlecase character.
  66. .. c:function:: int Py_UNICODE_ISLINEBREAK(Py_UNICODE ch)
  67. Return 1 or 0 depending on whether *ch* is a linebreak character.
  68. .. c:function:: int Py_UNICODE_ISDECIMAL(Py_UNICODE ch)
  69. Return 1 or 0 depending on whether *ch* is a decimal character.
  70. .. c:function:: int Py_UNICODE_ISDIGIT(Py_UNICODE ch)
  71. Return 1 or 0 depending on whether *ch* is a digit character.
  72. .. c:function:: int Py_UNICODE_ISNUMERIC(Py_UNICODE ch)
  73. Return 1 or 0 depending on whether *ch* is a numeric character.
  74. .. c:function:: int Py_UNICODE_ISALPHA(Py_UNICODE ch)
  75. Return 1 or 0 depending on whether *ch* is an alphabetic character.
  76. .. c:function:: int Py_UNICODE_ISALNUM(Py_UNICODE ch)
  77. Return 1 or 0 depending on whether *ch* is an alphanumeric character.
  78. .. c:function:: int Py_UNICODE_ISPRINTABLE(Py_UNICODE ch)
  79. Return 1 or 0 depending on whether *ch* is a printable character.
  80. Nonprintable characters are those characters defined in the Unicode character
  81. database as "Other" or "Separator", excepting the ASCII space (0x20) which is
  82. considered printable. (Note that printable characters in this context are
  83. those which should not be escaped when :func:`repr` is invoked on a string.
  84. It has no bearing on the handling of strings written to :data:`sys.stdout` or
  85. :data:`sys.stderr`.)
  86. These APIs can be used for fast direct character conversions:
  87. .. c:function:: Py_UNICODE Py_UNICODE_TOLOWER(Py_UNICODE ch)
  88. Return the character *ch* converted to lower case.
  89. .. c:function:: Py_UNICODE Py_UNICODE_TOUPPER(Py_UNICODE ch)
  90. Return the character *ch* converted to upper case.
  91. .. c:function:: Py_UNICODE Py_UNICODE_TOTITLE(Py_UNICODE ch)
  92. Return the character *ch* converted to title case.
  93. .. c:function:: int Py_UNICODE_TODECIMAL(Py_UNICODE ch)
  94. Return the character *ch* converted to a decimal positive integer. Return
  95. ``-1`` if this is not possible. This macro does not raise exceptions.
  96. .. c:function:: int Py_UNICODE_TODIGIT(Py_UNICODE ch)
  97. Return the character *ch* converted to a single digit integer. Return ``-1`` if
  98. this is not possible. This macro does not raise exceptions.
  99. .. c:function:: double Py_UNICODE_TONUMERIC(Py_UNICODE ch)
  100. Return the character *ch* converted to a double. Return ``-1.0`` if this is not
  101. possible. This macro does not raise exceptions.
  102. Plain Py_UNICODE
  103. """"""""""""""""
  104. To create Unicode objects and access their basic sequence properties, use these
  105. APIs:
  106. .. c:function:: PyObject* PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size)
  107. Create a Unicode object from the Py_UNICODE buffer *u* of the given size. *u*
  108. may be *NULL* which causes the contents to be undefined. It is the user's
  109. responsibility to fill in the needed data. The buffer is copied into the new
  110. object. If the buffer is not *NULL*, the return value might be a shared object.
  111. Therefore, modification of the resulting Unicode object is only allowed when *u*
  112. is *NULL*.
  113. .. c:function:: PyObject* PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size)
  114. Create a Unicode object from the char buffer *u*. The bytes will be interpreted
  115. as being UTF-8 encoded. *u* may also be *NULL* which
  116. causes the contents to be undefined. It is the user's responsibility to fill in
  117. the needed data. The buffer is copied into the new object. If the buffer is not
  118. *NULL*, the return value might be a shared object. Therefore, modification of
  119. the resulting Unicode object is only allowed when *u* is *NULL*.
  120. .. c:function:: PyObject *PyUnicode_FromString(const char *u)
  121. Create a Unicode object from an UTF-8 encoded null-terminated char buffer
  122. *u*.
  123. .. c:function:: PyObject* PyUnicode_FromFormat(const char *format, ...)
  124. Take a C :c:func:`printf`\ -style *format* string and a variable number of
  125. arguments, calculate the size of the resulting Python unicode string and return
  126. a string with the values formatted into it. The variable arguments must be C
  127. types and must correspond exactly to the format characters in the *format*
  128. ASCII-encoded string. The following format characters are allowed:
  129. .. % This should be exactly the same as the table in PyErr_Format.
  130. .. % The descriptions for %zd and %zu are wrong, but the truth is complicated
  131. .. % because not all compilers support the %z width modifier -- we fake it
  132. .. % when necessary via interpolating PY_FORMAT_SIZE_T.
  133. .. % Similar comments apply to the %ll width modifier and
  134. .. % PY_FORMAT_LONG_LONG.
  135. +-------------------+---------------------+--------------------------------+
  136. | Format Characters | Type | Comment |
  137. +===================+=====================+================================+
  138. | :attr:`%%` | *n/a* | The literal % character. |
  139. +-------------------+---------------------+--------------------------------+
  140. | :attr:`%c` | int | A single character, |
  141. | | | represented as an C int. |
  142. +-------------------+---------------------+--------------------------------+
  143. | :attr:`%d` | int | Exactly equivalent to |
  144. | | | ``printf("%d")``. |
  145. +-------------------+---------------------+--------------------------------+
  146. | :attr:`%u` | unsigned int | Exactly equivalent to |
  147. | | | ``printf("%u")``. |
  148. +-------------------+---------------------+--------------------------------+
  149. | :attr:`%ld` | long | Exactly equivalent to |
  150. | | | ``printf("%ld")``. |
  151. +-------------------+---------------------+--------------------------------+
  152. | :attr:`%lu` | unsigned long | Exactly equivalent to |
  153. | | | ``printf("%lu")``. |
  154. +-------------------+---------------------+--------------------------------+
  155. | :attr:`%lld` | long long | Exactly equivalent to |
  156. | | | ``printf("%lld")``. |
  157. +-------------------+---------------------+--------------------------------+
  158. | :attr:`%llu` | unsigned long long | Exactly equivalent to |
  159. | | | ``printf("%llu")``. |
  160. +-------------------+---------------------+--------------------------------+
  161. | :attr:`%zd` | Py_ssize_t | Exactly equivalent to |
  162. | | | ``printf("%zd")``. |
  163. +-------------------+---------------------+--------------------------------+
  164. | :attr:`%zu` | size_t | Exactly equivalent to |
  165. | | | ``printf("%zu")``. |
  166. +-------------------+---------------------+--------------------------------+
  167. | :attr:`%i` | int | Exactly equivalent to |
  168. | | | ``printf("%i")``. |
  169. +-------------------+---------------------+--------------------------------+
  170. | :attr:`%x` | int | Exactly equivalent to |
  171. | | | ``printf("%x")``. |
  172. +-------------------+---------------------+--------------------------------+
  173. | :attr:`%s` | char\* | A null-terminated C character |
  174. | | | array. |
  175. +-------------------+---------------------+--------------------------------+
  176. | :attr:`%p` | void\* | The hex representation of a C |
  177. | | | pointer. Mostly equivalent to |
  178. | | | ``printf("%p")`` except that |
  179. | | | it is guaranteed to start with |
  180. | | | the literal ``0x`` regardless |
  181. | | | of what the platform's |
  182. | | | ``printf`` yields. |
  183. +-------------------+---------------------+--------------------------------+
  184. | :attr:`%A` | PyObject\* | The result of calling |
  185. | | | :func:`ascii`. |
  186. +-------------------+---------------------+--------------------------------+
  187. | :attr:`%U` | PyObject\* | A unicode object. |
  188. +-------------------+---------------------+--------------------------------+
  189. | :attr:`%V` | PyObject\*, char \* | A unicode object (which may be |
  190. | | | *NULL*) and a null-terminated |
  191. | | | C character array as a second |
  192. | | | parameter (which will be used, |
  193. | | | if the first parameter is |
  194. | | | *NULL*). |
  195. +-------------------+---------------------+--------------------------------+
  196. | :attr:`%S` | PyObject\* | The result of calling |
  197. | | | :c:func:`PyObject_Str`. |
  198. +-------------------+---------------------+--------------------------------+
  199. | :attr:`%R` | PyObject\* | The result of calling |
  200. | | | :c:func:`PyObject_Repr`. |
  201. +-------------------+---------------------+--------------------------------+
  202. An unrecognized format character causes all the rest of the format string to be
  203. copied as-is to the result string, and any extra arguments discarded.
  204. .. note::
  205. The `"%lld"` and `"%llu"` format specifiers are only available
  206. when :const:`HAVE_LONG_LONG` is defined.
  207. .. versionchanged:: 3.2
  208. Support for ``"%lld"`` and ``"%llu"`` added.
  209. .. c:function:: PyObject* PyUnicode_FromFormatV(const char *format, va_list vargs)
  210. Identical to :c:func:`PyUnicode_FromFormat` except that it takes exactly two
  211. arguments.
  212. .. c:function:: PyObject* PyUnicode_TransformDecimalToASCII(Py_UNICODE *s, Py_ssize_t size)
  213. Create a Unicode object by replacing all decimal digits in
  214. :c:type:`Py_UNICODE` buffer of the given *size* by ASCII digits 0--9
  215. according to their decimal value. Return *NULL* if an exception
  216. occurs.
  217. .. c:function:: Py_UNICODE* PyUnicode_AsUnicode(PyObject *unicode)
  218. Return a read-only pointer to the Unicode object's internal :c:type:`Py_UNICODE`
  219. buffer, *NULL* if *unicode* is not a Unicode object.
  220. .. c:function:: Py_UNICODE* PyUnicode_AsUnicodeCopy(PyObject *unicode)
  221. Create a copy of a Unicode string ending with a nul character. Return *NULL*
  222. and raise a :exc:`MemoryError` exception on memory allocation failure,
  223. otherwise return a new allocated buffer (use :c:func:`PyMem_Free` to free the
  224. buffer).
  225. .. versionadded:: 3.2
  226. .. c:function:: Py_ssize_t PyUnicode_GetSize(PyObject *unicode)
  227. Return the length of the Unicode object.
  228. .. c:function:: PyObject* PyUnicode_FromEncodedObject(PyObject *obj, const char *encoding, const char *errors)
  229. Coerce an encoded object *obj* to an Unicode object and return a reference with
  230. incremented refcount.
  231. :class:`bytes`, :class:`bytearray` and other char buffer compatible objects
  232. are decoded according to the given *encoding* and using the error handling
  233. defined by *errors*. Both can be *NULL* to have the interface use the default
  234. values (see the next section for details).
  235. All other objects, including Unicode objects, cause a :exc:`TypeError` to be
  236. set.
  237. The API returns *NULL* if there was an error. The caller is responsible for
  238. decref'ing the returned objects.
  239. .. c:function:: PyObject* PyUnicode_FromObject(PyObject *obj)
  240. Shortcut for ``PyUnicode_FromEncodedObject(obj, NULL, "strict")`` which is used
  241. throughout the interpreter whenever coercion to Unicode is needed.
  242. If the platform supports :c:type:`wchar_t` and provides a header file wchar.h,
  243. Python can interface directly to this type using the following functions.
  244. Support is optimized if Python's own :c:type:`Py_UNICODE` type is identical to
  245. the system's :c:type:`wchar_t`.
  246. File System Encoding
  247. """"""""""""""""""""
  248. To encode and decode file names and other environment strings,
  249. :c:data:`Py_FileSystemEncoding` should be used as the encoding, and
  250. ``"surrogateescape"`` should be used as the error handler (:pep:`383`). To
  251. encode file names during argument parsing, the ``"O&"`` converter should be
  252. used, passing :c:func:`PyUnicode_FSConverter` as the conversion function:
  253. .. c:function:: int PyUnicode_FSConverter(PyObject* obj, void* result)
  254. ParseTuple converter: encode :class:`str` objects to :class:`bytes` using
  255. :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is.
  256. *result* must be a :c:type:`PyBytesObject*` which must be released when it is
  257. no longer used.
  258. .. versionadded:: 3.1
  259. To decode file names during argument parsing, the ``"O&"`` converter should be
  260. used, passing :c:func:`PyUnicode_FSDecoder` as the conversion function:
  261. .. c:function:: int PyUnicode_FSDecoder(PyObject* obj, void* result)
  262. ParseTuple converter: decode :class:`bytes` objects to :class:`str` using
  263. :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` objects are output
  264. as-is. *result* must be a :c:type:`PyUnicodeObject*` which must be released
  265. when it is no longer used.
  266. .. versionadded:: 3.2
  267. .. c:function:: PyObject* PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
  268. Decode a string using :c:data:`Py_FileSystemDefaultEncoding` and the
  269. ``'surrogateescape'`` error handler, or ``'strict'`` on Windows.
  270. If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to the
  271. locale encoding.
  272. .. versionchanged:: 3.2
  273. Use ``'strict'`` error handler on Windows.
  274. .. c:function:: PyObject* PyUnicode_DecodeFSDefault(const char *s)
  275. Decode a null-terminated string using :c:data:`Py_FileSystemDefaultEncoding`
  276. and the ``'surrogateescape'`` error handler, or ``'strict'`` on Windows.
  277. If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to the
  278. locale encoding.
  279. Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` if you know the string length.
  280. .. versionchanged:: 3.2
  281. Use ``'strict'`` error handler on Windows.
  282. .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
  283. Encode a Unicode object to :c:data:`Py_FileSystemDefaultEncoding` with the
  284. ``'surrogateescape'`` error handler, or ``'strict'`` on Windows, and return
  285. :class:`bytes`.
  286. If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to the
  287. locale encoding.
  288. .. versionadded:: 3.2
  289. wchar_t Support
  290. """""""""""""""
  291. :c:type:`wchar_t` support for platforms which support it:
  292. .. c:function:: PyObject* PyUnicode_FromWideChar(const wchar_t *w, Py_ssize_t size)
  293. Create a Unicode object from the :c:type:`wchar_t` buffer *w* of the given *size*.
  294. Passing -1 as the *size* indicates that the function must itself compute the length,
  295. using wcslen.
  296. Return *NULL* on failure.
  297. .. c:function:: Py_ssize_t PyUnicode_AsWideChar(PyUnicodeObject *unicode, wchar_t *w, Py_ssize_t size)
  298. Copy the Unicode object contents into the :c:type:`wchar_t` buffer *w*. At most
  299. *size* :c:type:`wchar_t` characters are copied (excluding a possibly trailing
  300. 0-termination character). Return the number of :c:type:`wchar_t` characters
  301. copied or -1 in case of an error. Note that the resulting :c:type:`wchar_t`
  302. string may or may not be 0-terminated. It is the responsibility of the caller
  303. to make sure that the :c:type:`wchar_t` string is 0-terminated in case this is
  304. required by the application.
  305. .. c:function:: wchar_t* PyUnicode_AsWideCharString(PyObject *unicode, Py_ssize_t *size)
  306. Convert the Unicode object to a wide character string. The output string
  307. always ends with a nul character. If *size* is not *NULL*, write the number
  308. of wide characters (excluding the trailing 0-termination character) into
  309. *\*size*.
  310. Returns a buffer allocated by :c:func:`PyMem_Alloc` (use :c:func:`PyMem_Free`
  311. to free it) on success. On error, returns *NULL*, *\*size* is undefined and
  312. raises a :exc:`MemoryError`.
  313. .. versionadded:: 3.2
  314. .. _builtincodecs:
  315. Built-in Codecs
  316. ^^^^^^^^^^^^^^^
  317. Python provides a set of built-in codecs which are written in C for speed. All of
  318. these codecs are directly usable via the following functions.
  319. Many of the following APIs take two arguments encoding and errors, and they
  320. have the same semantics as the ones of the built-in :func:`str` string object
  321. constructor.
  322. Setting encoding to *NULL* causes the default encoding to be used
  323. which is ASCII. The file system calls should use
  324. :c:func:`PyUnicode_FSConverter` for encoding file names. This uses the
  325. variable :c:data:`Py_FileSystemDefaultEncoding` internally. This
  326. variable should be treated as read-only: on some systems, it will be a
  327. pointer to a static string, on others, it will change at run-time
  328. (such as when the application invokes setlocale).
  329. Error handling is set by errors which may also be set to *NULL* meaning to use
  330. the default handling defined for the codec. Default error handling for all
  331. built-in codecs is "strict" (:exc:`ValueError` is raised).
  332. The codecs all use a similar interface. Only deviation from the following
  333. generic ones are documented for simplicity.
  334. Generic Codecs
  335. """"""""""""""
  336. These are the generic codec APIs:
  337. .. c:function:: PyObject* PyUnicode_Decode(const char *s, Py_ssize_t size, const char *encoding, const char *errors)
  338. Create a Unicode object by decoding *size* bytes of the encoded string *s*.
  339. *encoding* and *errors* have the same meaning as the parameters of the same name
  340. in the :func:`unicode` built-in function. The codec to be used is looked up
  341. using the Python codec registry. Return *NULL* if an exception was raised by
  342. the codec.
  343. .. c:function:: PyObject* PyUnicode_Encode(const Py_UNICODE *s, Py_ssize_t size, const char *encoding, const char *errors)
  344. Encode the :c:type:`Py_UNICODE` buffer *s* of the given *size* and return a Python
  345. bytes object. *encoding* and *errors* have the same meaning as the
  346. parameters of the same name in the Unicode :meth:`encode` method. The codec
  347. to be used is looked up using the Python codec registry. Return *NULL* if an
  348. exception was raised by the codec.
  349. .. c:function:: PyObject* PyUnicode_AsEncodedString(PyObject *unicode, const char *encoding, const char *errors)
  350. Encode a Unicode object and return the result as Python bytes object.
  351. *encoding* and *errors* have the same meaning as the parameters of the same
  352. name in the Unicode :meth:`encode` method. The codec to be used is looked up
  353. using the Python codec registry. Return *NULL* if an exception was raised by
  354. the codec.
  355. UTF-8 Codecs
  356. """"""""""""
  357. These are the UTF-8 codec APIs:
  358. .. c:function:: PyObject* PyUnicode_DecodeUTF8(const char *s, Py_ssize_t size, const char *errors)
  359. Create a Unicode object by decoding *size* bytes of the UTF-8 encoded string
  360. *s*. Return *NULL* if an exception was raised by the codec.
  361. .. c:function:: PyObject* PyUnicode_DecodeUTF8Stateful(const char *s, Py_ssize_t size, const char *errors, Py_ssize_t *consumed)
  362. If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF8`. If
  363. *consumed* is not *NULL*, trailing incomplete UTF-8 byte sequences will not be
  364. treated as an error. Those bytes will not be decoded and the number of bytes
  365. that have been decoded will be stored in *consumed*.
  366. .. c:function:: PyObject* PyUnicode_EncodeUTF8(const Py_UNICODE *s, Py_ssize_t size, const char *errors)
  367. Encode the :c:type:`Py_UNICODE` buffer *s* of the given *size* using UTF-8 and
  368. return a Python bytes object. Return *NULL* if an exception was raised by
  369. the codec.
  370. .. c:function:: PyObject* PyUnicode_AsUTF8String(PyObject *unicode)
  371. Encode a Unicode object using UTF-8 and return the result as Python bytes
  372. object. Error handling is "strict". Return *NULL* if an exception was
  373. raised by the codec.
  374. UTF-32 Codecs
  375. """""""""""""
  376. These are the UTF-32 codec APIs:
  377. .. c:function:: PyObject* PyUnicode_DecodeUTF32(const char *s, Py_ssize_t size, const char *errors, int *byteorder)
  378. Decode *size* bytes from a UTF-32 encoded buffer string and return the
  379. corresponding Unicode object. *errors* (if non-*NULL*) defines the error
  380. handling. It defaults to "strict".
  381. If *byteorder* is non-*NULL*, the decoder starts decoding using the given byte
  382. order::
  383. *byteorder == -1: little endian
  384. *byteorder == 0: native order
  385. *byteorder == 1: big endian
  386. If ``*byteorder`` is zero, and the first four bytes of the input data are a
  387. byte order mark (BOM), the decoder switches to this byte order and the BOM is
  388. not copied into the resulting Unicode string. If ``*byteorder`` is ``-1`` or
  389. ``1``, any byte order mark is copied to the output.
  390. After completion, *\*byteorder* is set to the current byte order at the end
  391. of input data.
  392. In a narrow build codepoints outside the BMP will be decoded as surrogate pairs.
  393. If *byteorder* is *NULL*, the codec starts in native order mode.
  394. Return *NULL* if an exception was raised by the codec.
  395. .. c:function:: PyObject* PyUnicode_DecodeUTF32Stateful(const char *s, Py_ssize_t size, const char *errors, int *byteorder, Py_ssize_t *consumed)
  396. If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF32`. If
  397. *consumed* is not *NULL*, :c:func:`PyUnicode_DecodeUTF32Stateful` will not treat
  398. trailing incomplete UTF-32 byte sequences (such as a number of bytes not divisible
  399. by four) as an error. Those bytes will not be decoded and the number of bytes
  400. that have been decoded will be stored in *consumed*.
  401. .. c:function:: PyObject* PyUnicode_EncodeUTF32(const Py_UNICODE *s, Py_ssize_t size, const char *errors, int byteorder)
  402. Return a Python bytes object holding the UTF-32 encoded value of the Unicode
  403. data in *s*. Output is written according to the following byte order::
  404. byteorder == -1: little endian
  405. byteorder == 0: native byte order (writes a BOM mark)
  406. byteorder == 1: big endian
  407. If byteorder is ``0``, the output string will always start with the Unicode BOM
  408. mark (U+FEFF). In the other two modes, no BOM mark is prepended.
  409. If *Py_UNICODE_WIDE* is not defined, surrogate pairs will be output
  410. as a single codepoint.
  411. Return *NULL* if an exception was raised by the codec.
  412. .. c:function:: PyObject* PyUnicode_AsUTF32String(PyObject *unicode)
  413. Return a Python byte string using the UTF-32 encoding in native byte
  414. order. The string always starts with a BOM mark. Error handling is "strict".
  415. Return *NULL* if an exception was raised by the codec.
  416. UTF-16 Codecs
  417. """""""""""""
  418. These are the UTF-16 codec APIs:
  419. .. c:function:: PyObject* PyUnicode_DecodeUTF16(const char *s, Py_ssize_t size, const char *errors, int *byteorder)
  420. Decode *size* bytes from a UTF-16 encoded buffer string and return the
  421. corresponding Unicode object. *errors* (if non-*NULL*) defines the error
  422. handling. It defaults to "strict".
  423. If *byteorder* is non-*NULL*, the decoder starts decoding using the given byte
  424. order::
  425. *byteorder == -1: little endian
  426. *byteorder == 0: native order
  427. *byteorder == 1: big endian
  428. If ``*byteorder`` is zero, and the first two bytes of the input data are a
  429. byte order mark (BOM), the decoder switches to this byte order and the BOM is
  430. not copied into the resulting Unicode string. If ``*byteorder`` is ``-1`` or
  431. ``1``, any byte order mark is copied to the output (where it will result in
  432. either a ``\ufeff`` or a ``\ufffe`` character).
  433. After completion, *\*byteorder* is set to the current byte order at the end
  434. of input data.
  435. If *byteorder* is *NULL*, the codec starts in native order mode.
  436. Return *NULL* if an exception was raised by the codec.
  437. .. c:function:: PyObject* PyUnicode_DecodeUTF16Stateful(const char *s, Py_ssize_t size, const char *errors, int *byteorder, Py_ssize_t *consumed)
  438. If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF16`. If
  439. *consumed* is not *NULL*, :c:func:`PyUnicode_DecodeUTF16Stateful` will not treat
  440. trailing incomplete UTF-16 byte sequences (such as an odd number of bytes or a
  441. split surrogate pair) as an error. Those bytes will not be decoded and the
  442. number of bytes that have been decoded will be stored in *consumed*.
  443. .. c:function:: PyObject* PyUnicode_EncodeUTF16(const Py_UNICODE *s, Py_ssize_t size, const char *errors, int byteorder)
  444. Return a Python bytes object holding the UTF-16 encoded value of the Unicode
  445. data in *s*. Output is written according to the following byte order::
  446. byteorder == -1: little endian
  447. byteorder == 0: native byte order (writes a BOM mark)
  448. byteorder == 1: big endian
  449. If byteorder is ``0``, the output string will always start with the Unicode BOM
  450. mark (U+FEFF). In the other two modes, no BOM mark is prepended.
  451. If *Py_UNICODE_WIDE* is defined, a single :c:type:`Py_UNICODE` value may get
  452. represented as a surrogate pair. If it is not defined, each :c:type:`Py_UNICODE`
  453. values is interpreted as an UCS-2 character.
  454. Return *NULL* if an exception was raised by the codec.
  455. .. c:function:: PyObject* PyUnicode_AsUTF16String(PyObject *unicode)
  456. Return a Python byte string using the UTF-16 encoding in native byte
  457. order. The string always starts with a BOM mark. Error handling is "strict".
  458. Return *NULL* if an exception was raised by the codec.
  459. UTF-7 Codecs
  460. """"""""""""
  461. These are the UTF-7 codec APIs:
  462. .. c:function:: PyObject* PyUnicode_DecodeUTF7(const char *s, Py_ssize_t size, const char *errors)
  463. Create a Unicode object by decoding *size* bytes of the UTF-7 encoded string
  464. *s*. Return *NULL* if an exception was raised by the codec.
  465. .. c:function:: PyObject* PyUnicode_DecodeUTF7Stateful(const char *s, Py_ssize_t size, const char *errors, Py_ssize_t *consumed)
  466. If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF7`. If
  467. *consumed* is not *NULL*, trailing incomplete UTF-7 base-64 sections will not
  468. be treated as an error. Those bytes will not be decoded and the number of
  469. bytes that have been decoded will be stored in *consumed*.
  470. .. c:function:: PyObject* PyUnicode_EncodeUTF7(const Py_UNICODE *s, Py_ssize_t size, int base64SetO, int base64WhiteSpace, const char *errors)
  471. Encode the :c:type:`Py_UNICODE` buffer of the given size using UTF-7 and
  472. return a Python bytes object. Return *NULL* if an exception was raised by
  473. the codec.
  474. If *base64SetO* is nonzero, "Set O" (punctuation that has no otherwise
  475. special meaning) will be encoded in base-64. If *base64WhiteSpace* is
  476. nonzero, whitespace will be encoded in base-64. Both are set to zero for the
  477. Python "utf-7" codec.
  478. Unicode-Escape Codecs
  479. """""""""""""""""""""
  480. These are the "Unicode Escape" codec APIs:
  481. .. c:function:: PyObject* PyUnicode_DecodeUnicodeEscape(const char *s, Py_ssize_t size, const char *errors)
  482. Create a Unicode object by decoding *size* bytes of the Unicode-Escape encoded
  483. string *s*. Return *NULL* if an exception was raised by the codec.
  484. .. c:function:: PyObject* PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, Py_ssize_t size)
  485. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using Unicode-Escape and
  486. return a Python string object. Return *NULL* if an exception was raised by the
  487. codec.
  488. .. c:function:: PyObject* PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
  489. Encode a Unicode object using Unicode-Escape and return the result as Python
  490. string object. Error handling is "strict". Return *NULL* if an exception was
  491. raised by the codec.
  492. Raw-Unicode-Escape Codecs
  493. """""""""""""""""""""""""
  494. These are the "Raw Unicode Escape" codec APIs:
  495. .. c:function:: PyObject* PyUnicode_DecodeRawUnicodeEscape(const char *s, Py_ssize_t size, const char *errors)
  496. Create a Unicode object by decoding *size* bytes of the Raw-Unicode-Escape
  497. encoded string *s*. Return *NULL* if an exception was raised by the codec.
  498. .. c:function:: PyObject* PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, Py_ssize_t size, const char *errors)
  499. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using Raw-Unicode-Escape
  500. and return a Python string object. Return *NULL* if an exception was raised by
  501. the codec.
  502. .. c:function:: PyObject* PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode)
  503. Encode a Unicode object using Raw-Unicode-Escape and return the result as
  504. Python string object. Error handling is "strict". Return *NULL* if an exception
  505. was raised by the codec.
  506. Latin-1 Codecs
  507. """"""""""""""
  508. These are the Latin-1 codec APIs: Latin-1 corresponds to the first 256 Unicode
  509. ordinals and only these are accepted by the codecs during encoding.
  510. .. c:function:: PyObject* PyUnicode_DecodeLatin1(const char *s, Py_ssize_t size, const char *errors)
  511. Create a Unicode object by decoding *size* bytes of the Latin-1 encoded string
  512. *s*. Return *NULL* if an exception was raised by the codec.
  513. .. c:function:: PyObject* PyUnicode_EncodeLatin1(const Py_UNICODE *s, Py_ssize_t size, const char *errors)
  514. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using Latin-1 and
  515. return a Python bytes object. Return *NULL* if an exception was raised by
  516. the codec.
  517. .. c:function:: PyObject* PyUnicode_AsLatin1String(PyObject *unicode)
  518. Encode a Unicode object using Latin-1 and return the result as Python bytes
  519. object. Error handling is "strict". Return *NULL* if an exception was
  520. raised by the codec.
  521. ASCII Codecs
  522. """"""""""""
  523. These are the ASCII codec APIs. Only 7-bit ASCII data is accepted. All other
  524. codes generate errors.
  525. .. c:function:: PyObject* PyUnicode_DecodeASCII(const char *s, Py_ssize_t size, const char *errors)
  526. Create a Unicode object by decoding *size* bytes of the ASCII encoded string
  527. *s*. Return *NULL* if an exception was raised by the codec.
  528. .. c:function:: PyObject* PyUnicode_EncodeASCII(const Py_UNICODE *s, Py_ssize_t size, const char *errors)
  529. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using ASCII and
  530. return a Python bytes object. Return *NULL* if an exception was raised by
  531. the codec.
  532. .. c:function:: PyObject* PyUnicode_AsASCIIString(PyObject *unicode)
  533. Encode a Unicode object using ASCII and return the result as Python bytes
  534. object. Error handling is "strict". Return *NULL* if an exception was
  535. raised by the codec.
  536. Character Map Codecs
  537. """"""""""""""""""""
  538. This codec is special in that it can be used to implement many different codecs
  539. (and this is in fact what was done to obtain most of the standard codecs
  540. included in the :mod:`encodings` package). The codec uses mapping to encode and
  541. decode characters.
  542. Decoding mappings must map single string characters to single Unicode
  543. characters, integers (which are then interpreted as Unicode ordinals) or None
  544. (meaning "undefined mapping" and causing an error).
  545. Encoding mappings must map single Unicode characters to single string
  546. characters, integers (which are then interpreted as Latin-1 ordinals) or None
  547. (meaning "undefined mapping" and causing an error).
  548. The mapping objects provided must only support the __getitem__ mapping
  549. interface.
  550. If a character lookup fails with a LookupError, the character is copied as-is
  551. meaning that its ordinal value will be interpreted as Unicode or Latin-1 ordinal
  552. resp. Because of this, mappings only need to contain those mappings which map
  553. characters to different code points.
  554. These are the mapping codec APIs:
  555. .. c:function:: PyObject* PyUnicode_DecodeCharmap(const char *s, Py_ssize_t size, PyObject *mapping, const char *errors)
  556. Create a Unicode object by decoding *size* bytes of the encoded string *s* using
  557. the given *mapping* object. Return *NULL* if an exception was raised by the
  558. codec. If *mapping* is *NULL* latin-1 decoding will be done. Else it can be a
  559. dictionary mapping byte or a unicode string, which is treated as a lookup table.
  560. Byte values greater that the length of the string and U+FFFE "characters" are
  561. treated as "undefined mapping".
  562. .. c:function:: PyObject* PyUnicode_EncodeCharmap(const Py_UNICODE *s, Py_ssize_t size, PyObject *mapping, const char *errors)
  563. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using the given
  564. *mapping* object and return a Python string object. Return *NULL* if an
  565. exception was raised by the codec.
  566. .. c:function:: PyObject* PyUnicode_AsCharmapString(PyObject *unicode, PyObject *mapping)
  567. Encode a Unicode object using the given *mapping* object and return the result
  568. as Python string object. Error handling is "strict". Return *NULL* if an
  569. exception was raised by the codec.
  570. The following codec API is special in that maps Unicode to Unicode.
  571. .. c:function:: PyObject* PyUnicode_TranslateCharmap(const Py_UNICODE *s, Py_ssize_t size, PyObject *table, const char *errors)
  572. Translate a :c:type:`Py_UNICODE` buffer of the given *size* by applying a
  573. character mapping *table* to it and return the resulting Unicode object. Return
  574. *NULL* when an exception was raised by the codec.
  575. The *mapping* table must map Unicode ordinal integers to Unicode ordinal
  576. integers or None (causing deletion of the character).
  577. Mapping tables need only provide the :meth:`__getitem__` interface; dictionaries
  578. and sequences work well. Unmapped character ordinals (ones which cause a
  579. :exc:`LookupError`) are left untouched and are copied as-is.
  580. MBCS codecs for Windows
  581. """""""""""""""""""""""
  582. These are the MBCS codec APIs. They are currently only available on Windows and
  583. use the Win32 MBCS converters to implement the conversions. Note that MBCS (or
  584. DBCS) is a class of encodings, not just one. The target encoding is defined by
  585. the user settings on the machine running the codec.
  586. .. c:function:: PyObject* PyUnicode_DecodeMBCS(const char *s, Py_ssize_t size, const char *errors)
  587. Create a Unicode object by decoding *size* bytes of the MBCS encoded string *s*.
  588. Return *NULL* if an exception was raised by the codec.
  589. .. c:function:: PyObject* PyUnicode_DecodeMBCSStateful(const char *s, int size, const char *errors, int *consumed)
  590. If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeMBCS`. If
  591. *consumed* is not *NULL*, :c:func:`PyUnicode_DecodeMBCSStateful` will not decode
  592. trailing lead byte and the number of bytes that have been decoded will be stored
  593. in *consumed*.
  594. .. c:function:: PyObject* PyUnicode_EncodeMBCS(const Py_UNICODE *s, Py_ssize_t size, const char *errors)
  595. Encode the :c:type:`Py_UNICODE` buffer of the given *size* using MBCS and return
  596. a Python bytes object. Return *NULL* if an exception was raised by the
  597. codec.
  598. .. c:function:: PyObject* PyUnicode_AsMBCSString(PyObject *unicode)
  599. Encode a Unicode object using MBCS and return the result as Python bytes
  600. object. Error handling is "strict". Return *NULL* if an exception was
  601. raised by the codec.
  602. Methods & Slots
  603. """""""""""""""
  604. .. _unicodemethodsandslots:
  605. Methods and Slot Functions
  606. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  607. The following APIs are capable of handling Unicode objects and strings on input
  608. (we refer to them as strings in the descriptions) and return Unicode objects or
  609. integers as appropriate.
  610. They all return *NULL* or ``-1`` if an exception occurs.
  611. .. c:function:: PyObject* PyUnicode_Concat(PyObject *left, PyObject *right)
  612. Concat two strings giving a new Unicode string.
  613. .. c:function:: PyObject* PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)
  614. Split a string giving a list of Unicode strings. If *sep* is *NULL*, splitting
  615. will be done at all whitespace substrings. Otherwise, splits occur at the given
  616. separator. At most *maxsplit* splits will be done. If negative, no limit is
  617. set. Separators are not included in the resulting list.
  618. .. c:function:: PyObject* PyUnicode_Splitlines(PyObject *s, int keepend)
  619. Split a Unicode string at line breaks, returning a list of Unicode strings.
  620. CRLF is considered to be one line break. If *keepend* is 0, the Line break
  621. characters are not included in the resulting strings.
  622. .. c:function:: PyObject* PyUnicode_Translate(PyObject *str, PyObject *table, const char *errors)
  623. Translate a string by applying a character mapping table to it and return the
  624. resulting Unicode object.
  625. The mapping table must map Unicode ordinal integers to Unicode ordinal integers
  626. or None (causing deletion of the character).
  627. Mapping tables need only provide the :meth:`__getitem__` interface; dictionaries
  628. and sequences work well. Unmapped character ordinals (ones which cause a
  629. :exc:`LookupError`) are left untouched and are copied as-is.
  630. *errors* has the usual meaning for codecs. It may be *NULL* which indicates to
  631. use the default error handling.
  632. .. c:function:: PyObject* PyUnicode_Join(PyObject *separator, PyObject *seq)
  633. Join a sequence of strings using the given *separator* and return the resulting
  634. Unicode string.
  635. .. c:function:: int PyUnicode_Tailmatch(PyObject *str, PyObject *substr, Py_ssize_t start, Py_ssize_t end, int direction)
  636. Return 1 if *substr* matches ``str[start:end]`` at the given tail end
  637. (*direction* == -1 means to do a prefix match, *direction* == 1 a suffix match),
  638. 0 otherwise. Return ``-1`` if an error occurred.
  639. .. c:function:: Py_ssize_t PyUnicode_Find(PyObject *str, PyObject *substr, Py_ssize_t start, Py_ssize_t end, int direction)
  640. Return the first position of *substr* in ``str[start:end]`` using the given
  641. *direction* (*direction* == 1 means to do a forward search, *direction* == -1 a
  642. backward search). The return value is the index of the first match; a value of
  643. ``-1`` indicates that no match was found, and ``-2`` indicates that an error
  644. occurred and an exception has been set.
  645. .. c:function:: Py_ssize_t PyUnicode_Count(PyObject *str, PyObject *substr, Py_ssize_t start, Py_ssize_t end)
  646. Return the number of non-overlapping occurrences of *substr* in
  647. ``str[start:end]``. Return ``-1`` if an error occurred.
  648. .. c:function:: PyObject* PyUnicode_Replace(PyObject *str, PyObject *substr, PyObject *replstr, Py_ssize_t maxcount)
  649. Replace at most *maxcount* occurrences of *substr* in *str* with *replstr* and
  650. return the resulting Unicode object. *maxcount* == -1 means replace all
  651. occurrences.
  652. .. c:function:: int PyUnicode_Compare(PyObject *left, PyObject *right)
  653. Compare two strings and return -1, 0, 1 for less than, equal, and greater than,
  654. respectively.
  655. .. c:function:: int PyUnicode_CompareWithASCIIString(PyObject *uni, char *string)
  656. Compare a unicode object, *uni*, with *string* and return -1, 0, 1 for less
  657. than, equal, and greater than, respectively. It is best to pass only
  658. ASCII-encoded strings, but the function interprets the input string as
  659. ISO-8859-1 if it contains non-ASCII characters".
  660. .. c:function:: int PyUnicode_RichCompare(PyObject *left, PyObject *right, int op)
  661. Rich compare two unicode strings and return one of the following:
  662. * ``NULL`` in case an exception was raised
  663. * :const:`Py_True` or :const:`Py_False` for successful comparisons
  664. * :const:`Py_NotImplemented` in case the type combination is unknown
  665. Note that :const:`Py_EQ` and :const:`Py_NE` comparisons can cause a
  666. :exc:`UnicodeWarning` in case the conversion of the arguments to Unicode fails
  667. with a :exc:`UnicodeDecodeError`.
  668. Possible values for *op* are :const:`Py_GT`, :const:`Py_GE`, :const:`Py_EQ`,
  669. :const:`Py_NE`, :const:`Py_LT`, and :const:`Py_LE`.
  670. .. c:function:: PyObject* PyUnicode_Format(PyObject *format, PyObject *args)
  671. Return a new string object from *format* and *args*; this is analogous to
  672. ``format % args``. The *args* argument must be a tuple.
  673. .. c:function:: int PyUnicode_Contains(PyObject *container, PyObject *element)
  674. Check whether *element* is contained in *container* and return true or false
  675. accordingly.
  676. *element* has to coerce to a one element Unicode string. ``-1`` is returned if
  677. there was an error.
  678. .. c:function:: void PyUnicode_InternInPlace(PyObject **string)
  679. Intern the argument *\*string* in place. The argument must be the address of a
  680. pointer variable pointing to a Python unicode string object. If there is an
  681. existing interned string that is the same as *\*string*, it sets *\*string* to
  682. it (decrementing the reference count of the old string object and incrementing
  683. the reference count of the interned string object), otherwise it leaves
  684. *\*string* alone and interns it (incrementing its reference count).
  685. (Clarification: even though there is a lot of talk about reference counts, think
  686. of this function as reference-count-neutral; you own the object after the call
  687. if and only if you owned it before the call.)
  688. .. c:function:: PyObject* PyUnicode_InternFromString(const char *v)
  689. A combination of :c:func:`PyUnicode_FromString` and
  690. :c:func:`PyUnicode_InternInPlace`, returning either a new unicode string object
  691. that has been interned, or a new ("owned") reference to an earlier interned
  692. string object with the same value.