diff options
author | Larry Hastings <larry@hastings.org> | 2013-11-18 17:32:13 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2013-11-18 17:32:13 (GMT) |
commit | ed4a1c57034d53bf217d64a771208d372ad9e1a5 (patch) | |
tree | a5448732832ef3315f33fba2f4b75f79358e4664 /Objects/unicodeobject.c | |
parent | fd32fffa5ada8b8be8a65bd51b001d989f99a3d3 (diff) | |
download | cpython-ed4a1c57034d53bf217d64a771208d372ad9e1a5.zip cpython-ed4a1c57034d53bf217d64a771208d372ad9e1a5.tar.gz cpython-ed4a1c57034d53bf217d64a771208d372ad9e1a5.tar.bz2 |
Argument Clinic: rename "self" to "module" for module-level functions.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 925d86c..b2f488d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -12722,7 +12722,7 @@ unicode_swapcase(PyObject *self) } /*[clinic] -module str +class str @staticmethod str.maketrans as unicode_maketrans |