chiark
/
gitweb
/
~mdw
/
mLib-python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
5ce5170
)
codec: Use the correct variable name in the decoder convenience function!
author
Mark Wooding
<mdw@distorted.org.uk>
Tue, 21 Mar 2006 00:37:25 +0000
(
00:37
+0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Tue, 21 Mar 2006 00:37:25 +0000
(
00:37
+0000)
codec.pyx.in
patch
|
blob
|
blame
|
history
diff --git
a/codec.pyx.in
b/codec.pyx.in
index ebbb38ed262c2c2db9b12b69998f558afe69195e..ad602693c852e23fef2c628a76d6d86e1935fa75 100644
(file)
--- a/
codec.pyx.in
+++ b/
codec.pyx.in
@@
-117,7
+117,7
@@
cdef class %CLASS%Decode:
def %PREFIX%_decode(text, *arg, **kw):
d = %CLASS%Decode(*arg, **kw)
def %PREFIX%_decode(text, *arg, **kw):
d = %CLASS%Decode(*arg, **kw)
- return
e
.decode(text) + d.done()
+ return
d
.decode(text) + d.done()
#----- That's all, folks ----------------------------------------------------
#----- That's all, folks ----------------------------------------------------