Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
31877c9d
Commit
31877c9d
authored
Jun 27, 2011
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Plain Diff
merge from 3.2
parents
2353e355
84e3ccc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Objects/bytes_methods.c
Objects/bytes_methods.c
+4
-4
No files found.
Objects/bytes_methods.c
View file @
31877c9d
...
...
@@ -366,10 +366,10 @@ _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len)
PyDoc_STRVAR_shared
(
_Py_maketrans__doc__
,
"B.maketrans(frm, to) -> translation table
\n
\
\n
\
Return a translation table (a bytes object of length 256)
\n
\
suitable for use in bytes.translate where each byte in frm is
\n
\
mapped to the byte at the same position in to.
\n
\
The
string
s frm and to must be of the same length."
);
Return a translation table (a bytes object of length 256)
suitable
\n
\
for use in the bytes or bytearray translate method where each byte
\n
\
in frm is
mapped to the byte at the same position in to.
\n
\
The
bytes object
s frm and to must be of the same length."
);
static
Py_ssize_t
_getbuffer
(
PyObject
*
obj
,
Py_buffer
*
view
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment