An error occurred fetching the project authors.
- 13 Aug, 2011 1 commit
-
-
Benjamin Peterson authored
This fixes the use of Unicode identifiers outside the BMP in narrow builds.
-
- 11 Aug, 2011 1 commit
-
-
Brian Curtin authored
The macro was introduced in #12724.
-
- 27 Jul, 2011 1 commit
-
-
Senthil Kumaran authored
-
- 04 Jul, 2011 2 commits
-
-
Victor Stinner authored
Add a new HAVE_MBCS define.
-
Senthil Kumaran authored
-
- 27 May, 2011 1 commit
-
-
Victor Stinner authored
Warnings found by the Clang Static Analyzer." Most people prefer ++ at the end of functions.
-
- 26 May, 2011 1 commit
-
-
Victor Stinner authored
Warnings found by the Clang Static Analyzer.
-
- 26 Apr, 2011 3 commits
-
-
Victor Stinner authored
subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure.
-
Victor Stinner authored
subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure.
-
Ezio Melotti authored
-
- 20 Apr, 2011 1 commit
-
-
Jesus Cea authored
-
- 06 Mar, 2011 1 commit
-
-
Benjamin Peterson authored
-
- 02 Mar, 2011 5 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
When a string is encoded to UTF-8 in strict mode, the result is cached into the object. Examples: str.encode(), str.encode('utf-8'), PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", NULL).
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
- 01 Mar, 2011 3 commits
-
-
Victor Stinner authored
* Use the same function to parse the format string in the 3 steps * Fix crashs on invalid format strings
-
Victor Stinner authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88697 | victor.stinner | 2011-03-01 23:46:52 +0100 (mar., 01 mars 2011) | 4 lines Issue #11246: Fix PyUnicode_FromFormat("%V") Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. ........
-
Victor Stinner authored
Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen.
-
- 26 Feb, 2011 1 commit
-
-
Alexander Belopolsky authored
-
- 25 Feb, 2011 1 commit
-
-
Alexander Belopolsky authored
Documented the list of optimized encodings as CPython implementation detail.
-
- 23 Feb, 2011 1 commit
-
-
Victor Stinner authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88481 | victor.stinner | 2011-02-21 22:13:44 +0100 (lun., 21 févr. 2011) | 4 lines Fix PyUnicode_FromFormatV("%c") for non-BMP char Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on narrow build. ........
-
- 22 Feb, 2011 1 commit
-
-
Brett Cannon authored
-
- 21 Feb, 2011 2 commits
-
-
Victor Stinner authored
Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on narrow build.
-
Victor Stinner authored
Issue #11187: Remove bootstrap code (use ASCII) of PyUnicode_AsEncodedString(), it was replaced by a better fallback (use the locale encoding) in PyUnicode_EncodeFSDefault(). Prepare also empty sections in NEWS.
-
- 22 Dec, 2010 1 commit
-
-
Alexander Belopolsky authored
-
- 12 Dec, 2010 1 commit
-
-
Benjamin Peterson authored
-
- 04 Dec, 2010 1 commit
-
-
Alexander Belopolsky authored
types. Added a new API function, PyUnicode_TransformDecimalToASCII(), which transforms non-ASCII decimal digits in a Unicode string to their ASCII equivalents.
-
- 03 Dec, 2010 2 commits
-
-
Martin v. Löwis authored
-
Georg Brandl authored
-
- 02 Dec, 2010 1 commit
-
-
Georg Brandl authored
#7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2.
-
- 30 Nov, 2010 1 commit
-
-
Georg Brandl authored
-
- 08 Nov, 2010 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* Add error_pos optional argument to _Py_wchar2char() * PyUnicode_EncodeFS() raises a UnicodeEncodeError or MemoryError if _Py_wchar2char() fails
-
- 07 Nov, 2010 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* Specify the default encoding: write 'utf-8' instead of sys.getdefaultencoding(), because the default encoding is now constant * Specify the default errors value
-
- 06 Nov, 2010 2 commits
-
-
Eric Smith authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86277 | eric.smith | 2010-11-06 15:27:37 -0400 (Sat, 06 Nov 2010) | 1 line Added more to docstrings for str.format, format_map, and __format__. ........
-
Eric Smith authored
-
- 05 Nov, 2010 1 commit
-
-
David Malcolm authored
(ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.
-