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
f61db65d
Commit
f61db65d
authored
Jul 22, 2012
by
Andrew Svetlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15094: fix incorrectly placed #endif in _tkinter.c.
Patch by Serhiy Storchaka.
parent
2a714a88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_tkinter.c
Modules/_tkinter.c
+1
-1
No files found.
Misc/NEWS
View file @
f61db65d
...
...
@@ -52,6 +52,9 @@ Core and Builtins
Library
-------
-
Issue
#
15094
:
Incorrectly
placed
#
endif
in
_tkinter
.
c
.
Patch
by
Serhiy
Storchaka
.
-
Issue
#
13922
:
argparse
no
longer
incorrectly
strips
'--'
s
that
appear
after
the
first
one
.
...
...
Modules/_tkinter.c
View file @
f61db65d
...
...
@@ -996,8 +996,8 @@ AsObj(PyObject *value)
ch
);
ckfree
(
FREECAST
outbuf
);
return
NULL
;
#endif
}
#endif
outbuf
[
i
]
=
ch
;
}
result
=
Tcl_NewUnicodeObj
(
outbuf
,
size
);
...
...
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