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
4d4cc96f
Commit
4d4cc96f
authored
Aug 01, 1996
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused var
parent
281ff953
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
Mac/Modules/res/Resmodule.c
Mac/Modules/res/Resmodule.c
+0
-4
Mac/Modules/res/ressupport.py
Mac/Modules/res/ressupport.py
+0
-1
No files found.
Mac/Modules/res/Resmodule.c
View file @
4d4cc96f
...
...
@@ -40,9 +40,6 @@ extern int GrafObj_Convert(PyObject *, GrafPtr *);
extern
PyObject
*
BMObj_New
(
BitMapPtr
);
extern
int
BMObj_Convert
(
PyObject
*
,
BitMapPtr
*
);
extern
PyObject
*
PMObj_New
(
PixMapHandle
);
extern
int
PMObj_Convert
(
PyObject
*
,
PixMapHandle
*
);
extern
PyObject
*
WinObj_WhichWindow
(
WindowPtr
);
#include <Resources.h>
...
...
@@ -1348,7 +1345,6 @@ static PyMethodDef Res_methods[] = {
PyObject
*
OptResObj_New
(
itself
)
Handle
itself
;
{
ResourceObject
*
it
;
if
(
itself
==
NULL
)
{
Py_INCREF
(
Py_None
);
return
Py_None
;
...
...
Mac/Modules/res/ressupport.py
View file @
4d4cc96f
...
...
@@ -35,7 +35,6 @@ finalstuff = finalstuff + """
PyObject *OptResObj_New(itself)
Handle itself;
{
ResourceObject *it;
if (itself == NULL) {
Py_INCREF(Py_None);
return Py_None;
...
...
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