diff options
author | Larry Hastings <larry@hastings.org> | 2014-01-07 12:41:53 -0800 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-01-07 12:41:53 -0800 |
commit | 9c6f8614acd6301e0ea40699623bb5df2c72976f (patch) | |
tree | fe6e7bacaa9674e8679fbfbb041c0743c29abb5c /Modules/unicodedata.c | |
parent | 53f829066582d98ccd57f94f506b8af380265482 (diff) | |
download | cpython-9c6f8614acd6301e0ea40699623bb5df2c72976f.tar.gz |
Issue #19273: The marker comments Argument Clinic uses have been changed
to improve readability.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index 0261d717b3..d12e4382f2 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -17,11 +17,11 @@ #include "ucnhash.h" #include "structmember.h" -/*[clinic] +/*[clinic input] module unicodedata class unicodedata.UCD -[clinic]*/ -/*[clinic checksum: da39a3ee5e6b4b0d3255bfef95601890afd80709]*/ +[clinic start generated code]*/ +/*[clinic end generated code: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709]*/ /* character properties */ @@ -113,7 +113,7 @@ static Py_UCS4 getuchar(PyUnicodeObject *obj) /* --- Module API --------------------------------------------------------- */ -/*[clinic] +/*[clinic input] unicodedata.UCD.decimal @@ -126,7 +126,7 @@ Converts a Unicode character into its equivalent decimal value. Returns the decimal value assigned to the Unicode character unichr as integer. If no such value is defined, default is returned, or, if not given, ValueError is raised. -[clinic]*/ +[clinic start generated code]*/ PyDoc_STRVAR(unicodedata_UCD_decimal__doc__, "decimal(unichr, default=None)\n" @@ -161,7 +161,7 @@ exit: static PyObject * unicodedata_UCD_decimal_impl(PyObject *self, PyUnicodeObject *unichr, PyObject *default_value) -/*[clinic checksum: 73edde0e9cd5913ea174c4fa81504369761b7426]*/ +/*[clinic end generated code: checksum=73edde0e9cd5913ea174c4fa81504369761b7426]*/ { PyUnicodeObject *v = (PyUnicodeObject *)unichr; int have_old = 0; |