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
1a104006
Commit
1a104006
authored
Jul 06, 2000
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused variables.
Added two functions that were left out of the method definition table.
parent
29fa30ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Modules/_cursesmodule.c
Modules/_cursesmodule.c
+4
-3
No files found.
Modules/_cursesmodule.c
View file @
1a104006
...
...
@@ -1643,7 +1643,6 @@ PyCurses_UngetMouse(self,args)
PyObject
*
self
;
PyObject
*
args
;
{
int
rtn
;
MEVENT
event
;
PyCursesInitialised
...
...
@@ -1947,7 +1946,7 @@ PyCurses_MouseMask(self,arg)
PyObject
*
self
;
PyObject
*
arg
;
{
int
newmask
,
rtn
;
int
newmask
;
mmask_t
oldmask
,
availmask
;
PyCursesInitialised
...
...
@@ -2159,7 +2158,7 @@ PyCurses_TypeAhead(self,arg)
PyObject
*
self
;
PyObject
*
arg
;
{
int
fd
,
err
;
int
fd
;
PyCursesInitialised
...
...
@@ -2302,6 +2301,8 @@ static PyMethodDef PyCurses_methods[] = {
{
"raw"
,
(
PyCFunction
)
PyCurses_raw
},
{
"reset_prog_mode"
,
(
PyCFunction
)
PyCurses_reset_prog_mode
},
{
"reset_shell_mode"
,
(
PyCFunction
)
PyCurses_reset_shell_mode
},
{
"resetty"
,
(
PyCFunction
)
PyCurses_resetty
},
{
"savetty"
,
(
PyCFunction
)
PyCurses_savetty
},
{
"setsyx"
,
(
PyCFunction
)
PyCurses_setsyx
},
{
"start_color"
,
(
PyCFunction
)
PyCurses_Start_Color
},
{
"termattrs"
,
(
PyCFunction
)
PyCurses_termattrs
},
...
...
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