diff options
author | Victor Stinner <vstinner@python.org> | 2021-09-02 17:02:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-02 17:02:03 (GMT) |
commit | a1e15a7a604e6f44cdaf4e106339df62eac5dc9f (patch) | |
tree | 30547fae0fa611dca30029e59e75e06f44e1dfb7 /Modules | |
parent | 0635e201beaf52373f776ff32702795e38f43ae3 (diff) | |
download | cpython-a1e15a7a604e6f44cdaf4e106339df62eac5dc9f.zip cpython-a1e15a7a604e6f44cdaf4e106339df62eac5dc9f.tar.gz cpython-a1e15a7a604e6f44cdaf4e106339df62eac5dc9f.tar.bz2 |
bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)
* Remove commented deprecation of ctypes.c_buffer.
* Remove references to ctypes.c_string which doesn't exist.
* Remove StringTestCase: it only had skipped test methods.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/callproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index f8f8efa..17e82f9 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -530,8 +530,8 @@ PyCArg_repr(PyCArgObject *self) } /* Hm, are these 'z' and 'Z' codes useful at all? - Shouldn't they be replaced by the functionality of c_string - and c_wstring ? + Shouldn't they be replaced by the functionality of create_string_buffer() + and c_wstring() ? */ case 'z': case 'Z': |