summaryrefslogtreecommitdiff
path: root/Include/bytes_methods.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/bytes_methods.h')
-rw-r--r--Include/bytes_methods.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/bytes_methods.h b/Include/bytes_methods.h
index 1498b8f83c..11d5f42752 100644
--- a/Include/bytes_methods.h
+++ b/Include/bytes_methods.h
@@ -21,8 +21,8 @@ extern void _Py_bytes_title(char *result, char *s, Py_ssize_t len);
extern void _Py_bytes_capitalize(char *result, char *s, Py_ssize_t len);
extern void _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len);
-/* This one gets the raw argument list. */
-extern PyObject* _Py_bytes_maketrans(PyObject *args);
+/* The maketrans() static method. */
+extern PyObject* _Py_bytes_maketrans(Py_buffer *frm, Py_buffer *to);
/* Shared __doc__ strings. */
extern const char _Py_isspace__doc__[];