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
7087f78d
Commit
7087f78d
authored
Mar 01, 2006
by
Thomas Wouters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints.
parent
5ddfe41e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Modules/binascii.c
Modules/binascii.c
+2
-2
No files found.
Modules/binascii.c
View file @
7087f78d
...
...
@@ -1028,7 +1028,7 @@ PyDoc_STRVAR(doc_a2b_qp, "Decode a string of qp-encoded data");
static
PyObject
*
binascii_a2b_qp
(
PyObject
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
unsigned
in
t
in
,
out
;
Py_ssize_
t
in
,
out
;
char
ch
;
unsigned
char
*
data
,
*
odata
;
Py_ssize_t
datalen
=
0
;
...
...
@@ -1129,7 +1129,7 @@ both encoded. When quotetabs is set, space and tabs are encoded.");
static
PyObject
*
binascii_b2a_qp
(
PyObject
*
self
,
PyObject
*
args
,
PyObject
*
kwargs
)
{
unsigned
in
t
in
,
out
;
Py_ssize_
t
in
,
out
;
unsigned
char
*
data
,
*
odata
;
Py_ssize_t
datalen
=
0
,
odatalen
=
0
;
PyObject
*
rv
;
...
...
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