summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28511: Use the "U" format instead of "O!" in PyArg_Parse*.Serhiy Storchaka2016-10-231-5/+2
|
* Add an extra byte for null in case we ever get very long unicode names.Christian Heimes2016-09-231-4/+4
|\
| * Add an extra byte for null in case we ever get very long unicode names.Christian Heimes2016-09-231-4/+4
| |
* | Unicode 9.0.0Benjamin Peterson2016-09-141-0/+3
| | | | | | | | | | Not completely mechanical since support for East Asian Width changes?emoji codepoints became Wide?had to be added to unicodedata.
* | Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup()Christian Heimes2016-09-141-2/+2
|\ \ | |/ |/|
| * Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
| |
* | Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup()Christian Heimes2016-09-141-1/+1
|/
* upgrade to Unicode 8.0.0Benjamin Peterson2015-06-271-2/+3
|
* Issue #24000: Improved Argument Clinic's mapping of converters to legacyLarry Hastings2015-05-071-2/+2
| | | | "format units". Updated the documentation to match.
* Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-22/+22
| | | | instead of types={'type'} to specify the types the converter accepts.
* Issue #20181: Converted the unicodedata module to Argument Clinic.Serhiy Storchaka2015-04-171-227/+196
|
* Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.Larry Hastings2015-04-141-2/+4
|
* Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-34/+3
|
* merge 3.3 (#23367)Benjamin Peterson2015-03-021-26/+75
|\
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-2/+2
| | | | | | | | overflows. Added few missed PyErr_NoMemory().
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-7/+7
| |
| * Closes #21780: make the unicodedata module "ssize_t clean" for parsing ↵Victor Stinner2014-07-011-2/+8
| | | | | | | | parameters
| * Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-2/+4
| | | | | | | | | | | | | | The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4.
| * Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-3/+3
| | | | | | | | | | | | | | | | | | | | annotate text signatures in docstrings, resulting in fewer false positives. "self" parameters are also explicitly marked, allowing inspect.Signature() to authoritatively detect (and skip) said parameters. Issue #20326: Argument Clinic now generates separate checksums for the input and output sections of the block, allowing external tools to verify that the input has not changed (and thus the output is not out-of-date).
| * Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-251-7/+6
| |
| * Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-2/+2
| | | | | | | | | | | | PyMethodDescr_Type, _PyMethodWrapper_Type, and PyWrapperDescr_Type) have been modified to provide introspection information for builtins. Also: many additional Lib, test suite, and Argument Clinic fixes.
| * Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings2014-01-071-6/+6
| | | | | | | | to improve readability.
| * Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!"Larry Hastings2014-01-071-5/+5
| | | | | | | | format unit.
| * Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-5/+9
| | | | | | | | for some builtins.
| * Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings2013-11-181-11/+12
| |
| * Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings2013-10-191-13/+51
| | | | | | | | for C files to generate argument parsing code. (See PEP 436.)
| * merge 3.3Benjamin Peterson2013-10-101-1/+1
| |\
| * \ merge 3.3Benjamin Peterson2013-10-101-2/+1
| |\ \
| | * \ merge 3.3 (#19220)Benjamin Peterson2013-10-101-3/+1
| | |\ \
| | * | | upgrade unicode db to 6.3.0 (closes #19221)Benjamin Peterson2013-10-101-2/+2
| | | | |
* | | | | fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-021-3/+10
| |_|_|/ |/| | |
* | | | replace hardcoded versionBenjamin Peterson2013-10-101-1/+1
|/ / /
* | | make sure the docstring is never out of date wrt unicode data versionBenjamin Peterson2013-10-101-1/+1
| |/ |/|
* | remove url from docstring (closes #19220)Benjamin Peterson2013-10-101-2/+1
|/
* #18803: fix more typos. Patch by F?vry Thibault.Ezio Melotti2013-08-261-1/+1
|
* #18466: fix more typos. Patch by F?vry Thibault.Ezio Melotti2013-08-171-1/+1
|
* #16681: merge with 3.2.Ezio Melotti2012-12-141-113/+193
|\
| * Use C-style comments (required for the AIX build slave).Stefan Krah2012-09-231-2/+2
| |
| * Issue #14909: A number of places were using PyMem_Realloc() apis andKristjan Valur Jonsson2012-05-311-2/+5
| | | | | | | | | | PyObject_GC_Resize() with incorrect error handling. In case of errors, the original object would be leaked. This checkin fixes those cases.
| * update to Unicode 6.1Benjamin Peterson2012-02-201-1/+1
| |
| * #13379: merge with 3.2.Ezio Melotti2011-11-101-5/+6
| |\
| * | #12753: fix compilation on Windows.Ezio Melotti2011-10-221-1/+2
| | |
| * | #12753: Add support for Unicode name aliases and named sequences.Ezio Melotti2011-10-211-16/+56
| | |
| * | Fix compilation warnings under 64-bit WindowsAntoine Pitrou2011-10-061-4/+4
| | |
| * | Remove all other uses of the C tolower()/toupper() which could break with a ↵Antoine Pitrou2011-10-041-92/+128
| |\ \ | | | | | | | | | | | | Turkish locale.
| | * | Port normalization to new API.Martin v. Löwis2011-09-291-71/+119
| | | |
| | * | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-1/+1
| | | |
| | * | Implement PEP 393.Martin v. Löwis2011-09-281-20/+8
| | | |
* | | | #16681: use "bidirectional class" instead of "bidirectional category" in the ↵Ezio Melotti2012-12-141-1/+1
| |_|/ |/| | | | | | | | docstring too.
* | | #13379: update Unicode version in unicodedata docstrings and comments.Ezio Melotti2011-11-101-5/+6
|/ /