Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cpython
Commits
8353f623
Commit
8353f623
authored
24 years ago
by
Andrew M. Kuchling
Browse files
Options
Download
Email Patches
Plain Diff
Comment out a debugging print (spotted by Michael Deegan)
parent
20318938
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Modules/_cursesmodule.c
Modules/_cursesmodule.c
+1
-1
No files found.
Modules/_cursesmodule.c
View file @
8353f623
...
...
@@ -1096,7 +1096,7 @@ PyCursesWindow_SubWin(PyCursesWindowObject *self, PyObject *args)
return
NULL
;
}
printf
(
"Subwin: %i %i %i %i
\n
"
,
nlines
,
ncols
,
begin_y
,
begin_x
);
/*
printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x);
*/
if
(
self
->
win
->
_flags
&
_ISPAD
)
win
=
subpad
(
self
->
win
,
nlines
,
ncols
,
begin_y
,
begin_x
);
else
...
...
This diff is collapsed.
Click to expand it.
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