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
9cfc62c4
Commit
9cfc62c4
authored
Aug 24, 2007
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cPickle was removed
parent
15d3d045
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1 addition
and
21 deletions
+1
-21
Modules/Setup.dist
Modules/Setup.dist
+1
-2
PC/VC6/pythoncore.dsp
PC/VC6/pythoncore.dsp
+0
-4
PC/os2emx/Makefile
PC/os2emx/Makefile
+0
-1
PC/os2emx/config.c
PC/os2emx/config.c
+0
-2
PC/os2emx/python25.def
PC/os2emx/python25.def
+0
-4
PC/os2vacpp/config.c
PC/os2vacpp/config.c
+0
-2
PC/os2vacpp/makefile
PC/os2vacpp/makefile
+0
-1
PC/os2vacpp/makefile.omk
PC/os2vacpp/makefile.omk
+0
-1
PCbuild8/pythoncore/pythoncore.vcproj
PCbuild8/pythoncore/pythoncore.vcproj
+0
-4
No files found.
Modules/Setup.dist
View file @
9cfc62c4
...
@@ -350,9 +350,8 @@ _symtable symtablemodule.c
...
@@ -350,9 +350,8 @@ _symtable symtablemodule.c
# Fred Drake's interface to the Python parser
# Fred Drake's interface to the Python parser
#parser parsermodule.c
#parser parsermodule.c
# cStringIO
and cPickle
# cStringIO
#cStringIO cStringIO.c
#cStringIO cStringIO.c
#cPickle cPickle.c
# Lee Busby's SIGFPE modules.
# Lee Busby's SIGFPE modules.
...
...
PC/VC6/pythoncore.dsp
View file @
9cfc62c4
...
@@ -273,10 +273,6 @@ SOURCE=..\config.c
...
@@ -273,10 +273,6 @@ SOURCE=..\config.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=..\..\Modules\cPickle.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\zlib\crc32.c
SOURCE=..\..\Modules\zlib\crc32.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
...
PC/os2emx/Makefile
View file @
9cfc62c4
...
@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
...
@@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
Modules/cmathmodule.c
\
Modules/cmathmodule.c
\
Modules/_codecsmodule.c
\
Modules/_codecsmodule.c
\
Modules/collectionsmodule.c
\
Modules/collectionsmodule.c
\
Modules/cPickle.c
\
Modules/cStringIO.c
\
Modules/cStringIO.c
\
Modules/_csv.c
\
Modules/_csv.c
\
Modules/datetimemodule.c
\
Modules/datetimemodule.c
\
...
...
PC/os2emx/config.c
View file @
9cfc62c4
...
@@ -50,7 +50,6 @@ extern void init_symtable();
...
@@ -50,7 +50,6 @@ extern void init_symtable();
extern
void
init_weakref
();
extern
void
init_weakref
();
extern
void
initarray
();
extern
void
initarray
();
extern
void
initbinascii
();
extern
void
initbinascii
();
extern
void
initcPickle
();
extern
void
initcStringIO
();
extern
void
initcStringIO
();
extern
void
initcollections
();
extern
void
initcollections
();
extern
void
initcmath
();
extern
void
initcmath
();
...
@@ -112,7 +111,6 @@ struct _inittab _PyImport_Inittab[] = {
...
@@ -112,7 +111,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"_weakref"
,
init_weakref
},
{
"_weakref"
,
init_weakref
},
{
"array"
,
initarray
},
{
"array"
,
initarray
},
{
"binascii"
,
initbinascii
},
{
"binascii"
,
initbinascii
},
{
"cPickle"
,
initcPickle
},
{
"cStringIO"
,
initcStringIO
},
{
"cStringIO"
,
initcStringIO
},
{
"collections"
,
initcollections
},
{
"collections"
,
initcollections
},
{
"cmath"
,
initcmath
},
{
"cmath"
,
initcmath
},
...
...
PC/os2emx/python25.def
View file @
9cfc62c4
...
@@ -1196,10 +1196,6 @@ EXPORTS
...
@@ -1196,10 +1196,6 @@ EXPORTS
"dequeiter_type"
"dequeiter_type"
"dequereviter_type"
"dequereviter_type"
; From python25_s.lib(cPickle)
; "initcPickle"
; "fast_save_leave"
; From python25_s.lib(cStringIO)
; From python25_s.lib(cStringIO)
; "initcStringIO"
; "initcStringIO"
...
...
PC/os2vacpp/config.c
View file @
9cfc62c4
...
@@ -35,7 +35,6 @@ extern void initstruct(void);
...
@@ -35,7 +35,6 @@ extern void initstruct(void);
extern
void
inittime
(
void
);
extern
void
inittime
(
void
);
extern
void
initthread
(
void
);
extern
void
initthread
(
void
);
extern
void
initcStringIO
(
void
);
extern
void
initcStringIO
(
void
);
extern
void
initcPickle
(
void
);
extern
void
initpcre
(
void
);
extern
void
initpcre
(
void
);
#ifdef WIN32
#ifdef WIN32
extern
void
initmsvcrt
(
void
);
extern
void
initmsvcrt
(
void
);
...
@@ -80,7 +79,6 @@ struct _inittab _PyImport_Inittab[] = {
...
@@ -80,7 +79,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"thread"
,
initthread
},
{
"thread"
,
initthread
},
#endif
#endif
{
"cStringIO"
,
initcStringIO
},
{
"cStringIO"
,
initcStringIO
},
{
"cPickle"
,
initcPickle
},
{
"pcre"
,
initpcre
},
{
"pcre"
,
initpcre
},
#ifdef WIN32
#ifdef WIN32
{
"msvcrt"
,
initmsvcrt
},
{
"msvcrt"
,
initmsvcrt
},
...
...
PC/os2vacpp/makefile
View file @
9cfc62c4
...
@@ -180,7 +180,6 @@ MODULES = \
...
@@ -180,7 +180,6 @@ MODULES = \
$(PATHOBJ)
\A
rrayModule.obj
\
$(PATHOBJ)
\A
rrayModule.obj
\
$(PATHOBJ)
\B
inAscii.obj
\
$(PATHOBJ)
\B
inAscii.obj
\
$(PATHOBJ)
\C
MathModule.obj
\
$(PATHOBJ)
\C
MathModule.obj
\
$(PATHOBJ)
\c
Pickle.obj
\
$(PATHOBJ)
\c
StringIO.obj
\
$(PATHOBJ)
\c
StringIO.obj
\
$(PATHOBJ)
\E
rrnoModule.obj
\
$(PATHOBJ)
\E
rrnoModule.obj
\
$(PATHOBJ)
\G
CModule.obj
\
$(PATHOBJ)
\G
CModule.obj
\
...
...
PC/os2vacpp/makefile.omk
View file @
9cfc62c4
...
@@ -142,7 +142,6 @@ MODULES = \
...
@@ -142,7 +142,6 @@ MODULES = \
ArrayModule.obj
\
ArrayModule.obj
\
BinAscii.obj
\
BinAscii.obj
\
CMathModule.obj
\
CMathModule.obj
\
cPickle.obj
\
cStringIO.obj
\
cStringIO.obj
\
ErrnoModule.obj
\
ErrnoModule.obj
\
GetBuildInfo.obj
\
GetBuildInfo.obj
\
...
...
PCbuild8/pythoncore/pythoncore.vcproj
View file @
9cfc62c4
...
@@ -1449,10 +1449,6 @@
...
@@ -1449,10 +1449,6 @@
RelativePath=
"..\..\Modules\cmathmodule.c"
RelativePath=
"..\..\Modules\cmathmodule.c"
>
>
</File>
</File>
<File
RelativePath=
"..\..\Modules\cPickle.c"
>
</File>
<File
<File
RelativePath=
"..\..\Modules\cStringIO.c"
RelativePath=
"..\..\Modules\cStringIO.c"
>
>
...
...
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