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
06ad1872
Commit
06ad1872
authored
May 09, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
these builtins have to be initialized
parent
acbf3c31
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
6 deletions
+25
-6
Include/Python.h
Include/Python.h
+1
-0
Include/bltinmodule.h
Include/bltinmodule.h
+14
-0
Makefile.pre.in
Makefile.pre.in
+1
-0
Objects/object.c
Objects/object.c
+9
-0
Python/bltinmodule.c
Python/bltinmodule.c
+0
-6
No files found.
Include/Python.h
View file @
06ad1872
...
...
@@ -113,6 +113,7 @@
#include "import.h"
#include "abstract.h"
#include "bltinmodule.h"
#include "compile.h"
#include "eval.h"
...
...
Include/bltinmodule.h
0 → 100644
View file @
06ad1872
#ifndef Py_BLTINMODULE_H
#define Py_BLTINMODULE_H
#ifdef __cplusplus
extern
"C"
{
#endif
PyAPI_DATA
(
PyTypeObject
)
PyFilter_Type
;
PyAPI_DATA
(
PyTypeObject
)
PyMap_Type
;
PyAPI_DATA
(
PyTypeObject
)
PyZip_Type
;
#ifdef __cplusplus
}
#endif
#endif
/* !Py_BLTINMODULE_H */
Makefile.pre.in
View file @
06ad1872
...
...
@@ -612,6 +612,7 @@ PYTHON_HEADERS= \
Include/abstract.h
\
Include/asdl.h
\
Include/ast.h
\
Include/bltinmodule.h
\
Include/bitset.h
\
Include/boolobject.h
\
Include/bytes_methods.h
\
...
...
Objects/object.c
View file @
06ad1872
...
...
@@ -1595,6 +1595,15 @@ _Py_ReadyTypes(void)
if
(
PyType_Ready
(
&
PyMemberDescr_Type
)
<
0
)
Py_FatalError
(
"Can't initialize member descriptor type"
);
if
(
PyType_Ready
(
&
PyFilter_Type
)
<
0
)
Py_FatalError
(
"Can't initialize filter type"
);
if
(
PyType_Ready
(
&
PyMap_Type
)
<
0
)
Py_FatalError
(
"Can't initialize map type"
);
if
(
PyType_Ready
(
&
PyZip_Type
)
<
0
)
Py_FatalError
(
"Can't initialize zip type"
);
}
...
...
Python/bltinmodule.c
View file @
06ad1872
...
...
@@ -317,8 +317,6 @@ typedef struct {
PyObject
*
it
;
}
filterobject
;
PyTypeObject
PyFilter_Type
;
static
PyObject
*
filter_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
{
...
...
@@ -913,8 +911,6 @@ typedef struct {
PyObject
*
func
;
}
mapobject
;
PyTypeObject
PyMap_Type
;
static
PyObject
*
map_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
{
...
...
@@ -2031,8 +2027,6 @@ typedef struct {
PyObject
*
result
;
}
zipobject
;
PyTypeObject
PyZip_Type
;
static
PyObject
*
zip_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
{
...
...
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