There was an error while loading. Please reload this page.
1 parent e1b8253 commit 7252a6eCopy full SHA for 7252a6e
5 files changed
Include/bytes_methods.h
@@ -21,8 +21,8 @@ extern void _Py_bytes_title(char *result, char *s, Py_ssize_t len);
21
extern void _Py_bytes_capitalize(char *result, char *s, Py_ssize_t len);
22
extern void _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len);
23
24
-/* This one gets the raw argument list. */
25
-extern PyObject* _Py_bytes_maketrans(PyObject *args);
+/* The maketrans() static method. */
+extern PyObject* _Py_bytes_maketrans(PyObject *frm, PyObject *to);
26
27
/* Shared __doc__ strings. */
28
extern const char _Py_isspace__doc__[];
Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
10
Core and Builtins
11
-----------------
12
13
+- Issue #20179: Apply Argument Clinic to bytes and bytearray.
14
+ Patch by Tal Einat.
15
+
16
- Issue #22082: Clear interned strings in slotdefs.
17
18
- Upgrade Unicode database to Unicode 7.0.0.
0 commit comments