An error occurred fetching the project authors.
- 24 Feb, 2012 1 commit
-
-
Victor Stinner authored
-
- 23 Feb, 2012 1 commit
-
-
Victor Stinner authored
* Decode thousands separator and decimal point using PyUnicode_DecodeLocale() (from the locale encoding), instead of decoding them implicitly from latin1 * Remove _PyUnicode_InsertThousandsGroupingLocale(), it was not used * Change _PyUnicode_InsertThousandsGrouping() API to return the maximum character if unicode is NULL * Replace MIN/MAX macros by Py_MIN/Py_MAX * stringlib/undef.h undefines STRINGLIB_IS_UNICODE * stringlib/localeutil.h only supports Unicode
-
- 22 Feb, 2012 6 commits
-
-
Victor Stinner authored
-
Antoine Pitrou authored
-
Victor Stinner authored
Write a specialized function to write an ASCII/latin1 C char* string into a Python Unicode string.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
- 21 Feb, 2012 1 commit
-
-
Benjamin Peterson authored
-
- 20 Feb, 2012 2 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
-
- 14 Feb, 2012 1 commit
-
-
Victor Stinner authored
-
- 07 Feb, 2012 1 commit
-
-
Victor Stinner authored
-
- 05 Feb, 2012 1 commit
-
-
Victor Stinner authored
-
- 29 Jan, 2012 1 commit
-
-
Antoine Pitrou authored
Patch by Hynek Schlawack.
-
- 16 Jan, 2012 1 commit
-
-
Benjamin Peterson authored
-
- 14 Jan, 2012 4 commits
-
-
Gregory P. Smith authored
to a single #define instead of having several copies in several files. This excludes the Modules/ tree (datetime and expat both have a copy for their own purposes with no need for it to be the same).
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 20 Dec, 2011 1 commit
-
-
Benjamin Peterson authored
-
- 13 Jan, 2012 1 commit
-
-
Benjamin Peterson authored
-
- 12 Jan, 2012 2 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 11 Jan, 2012 1 commit
-
-
Benjamin Peterson authored
Also broaden the category of characters that count as lowercase/uppercase.
-
- 03 Jan, 2012 1 commit
-
-
Victor Stinner authored
It is faster than the unicode_fill() function which was implemented in formatter_unicode.c.
-
- 02 Jan, 2012 3 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 01 Jan, 2012 2 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 20 Dec, 2011 2 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 18 Dec, 2011 3 commits
-
-
Victor Stinner authored
The main bottleneck was the PyUnicode_READ() macro.
-
Victor Stinner authored
-
Victor Stinner authored
Use findchar() which is more optimized than a dummy loop using PyUnicode_READ(). PyUnicode_READ() is a complex and slow macro.
-
- 17 Dec, 2011 4 commits
-
-
Victor Stinner authored
Search the invalid character using mbrtowc().
-
Victor Stinner authored
instead of surrogateescape So it would be possible to support more error handlers later.
-
Victor Stinner authored
Add also FIXMEs in unicodeobject.c
-
Victor Stinner authored
-