diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-16 12:24:01 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-16 12:24:01 -0500 |
commit | 79d07f6f48cf5c60eb5ef3704aa135613f9bae87 (patch) | |
tree | 6fa69d91e2847a8509d05dc29e2cd43402243db1 /Python/getargs.c | |
parent | 6e1127bdc88214b10b93a9a608e127f90eadee2f (diff) | |
download | cpython-79d07f6f48cf5c60eb5ef3704aa135613f9bae87.tar.gz |
kill capsule names that we don't need anymore
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index ba677b49d3..38eec171d1 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -140,10 +140,6 @@ _PyArg_VaParse_SizeT(PyObject *args, char *format, va_list va) /* Handle cleanup of allocated memory in case of exception */ -#define GETARGS_CAPSULE_NAME_CLEANUP_PTR "getargs.cleanup_ptr" -#define GETARGS_CAPSULE_NAME_CLEANUP_BUFFER "getargs.cleanup_buffer" -#define GETARGS_CAPSULE_NAME_CLEANUP_CONVERT "getargs.cleanup_convert" - static int cleanup_ptr(PyObject *self, void *ptr) { |