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
87710752
Commit
87710752
authored
Nov 11, 2012
by
Nadeem Vawda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in backporting fix of issue #16411 to 2.7.
parent
48634555
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Modules/zlibmodule.c
Modules/zlibmodule.c
+2
-2
No files found.
Modules/zlibmodule.c
View file @
87710752
...
...
@@ -830,8 +830,8 @@ PyZlib_unflush(compobject *self, PyObject *args)
ENTER_ZLIB
start_total_out
=
self
->
zst
.
total_out
;
self
->
zst
.
avail_in
=
Py
Bytes
_GET_SIZE
(
self
->
unconsumed_tail
);
self
->
zst
.
next_in
=
(
Byte
*
)
Py
Bytes
_AS_STRING
(
self
->
unconsumed_tail
);
self
->
zst
.
avail_in
=
Py
String
_GET_SIZE
(
self
->
unconsumed_tail
);
self
->
zst
.
next_in
=
(
Byte
*
)
Py
String
_AS_STRING
(
self
->
unconsumed_tail
);
self
->
zst
.
avail_out
=
length
;
self
->
zst
.
next_out
=
(
Byte
*
)
PyString_AS_STRING
(
retval
);
...
...
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