mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Remove last traces of cStringIO.
This commit is contained in:
parent
b1ef6735ba
commit
0312494665
13 changed files with 7 additions and 119 deletions
|
@ -690,10 +690,6 @@
|
|||
RelativePath="..\..\Include\complexobject.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Include\cStringIO.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Include\datetime.h"
|
||||
>
|
||||
|
|
|
@ -50,7 +50,6 @@ extern void init_symtable();
|
|||
extern void init_weakref();
|
||||
extern void initarray();
|
||||
extern void initbinascii();
|
||||
extern void initcStringIO();
|
||||
extern void initcollections();
|
||||
extern void initcmath();
|
||||
extern void initdatetime();
|
||||
|
@ -110,7 +109,6 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_weakref", init_weakref},
|
||||
{"array", initarray},
|
||||
{"binascii", initbinascii},
|
||||
{"cStringIO", initcStringIO},
|
||||
{"collections", initcollections},
|
||||
{"cmath", initcmath},
|
||||
{"datetime", initdatetime},
|
||||
|
|
|
@ -1218,9 +1218,6 @@ EXPORTS
|
|||
; "initcPickle"
|
||||
; "fast_save_leave"
|
||||
|
||||
; From python26_s.lib(cStringIO)
|
||||
; "initcStringIO"
|
||||
|
||||
; From python26_s.lib(_csv)
|
||||
; "init_csv"
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@ extern void init_socket(void);
|
|||
extern void initstruct(void);
|
||||
extern void inittime(void);
|
||||
extern void init_thread(void);
|
||||
extern void initcStringIO(void);
|
||||
extern void initpcre(void);
|
||||
#ifdef WIN32
|
||||
extern void initmsvcrt(void);
|
||||
|
@ -78,7 +77,6 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
#ifdef WITH_THREAD
|
||||
{"_thread", init_thread},
|
||||
#endif
|
||||
{"cStringIO", initcStringIO},
|
||||
{"pcre", initpcre},
|
||||
#ifdef WIN32
|
||||
{"msvcrt", initmsvcrt},
|
||||
|
|
|
@ -180,7 +180,6 @@ MODULES = \
|
|||
$(PATHOBJ)\ArrayModule.obj \
|
||||
$(PATHOBJ)\BinAscii.obj \
|
||||
$(PATHOBJ)\CMathModule.obj \
|
||||
$(PATHOBJ)\cStringIO.obj \
|
||||
$(PATHOBJ)\ErrnoModule.obj \
|
||||
$(PATHOBJ)\GCModule.obj \
|
||||
$(PATHOBJ)\GetBuildInfo.obj \
|
||||
|
@ -440,7 +439,7 @@ cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
|
|||
|
||||
cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
|
||||
$(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
|
||||
$(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
|
||||
$(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
|
||||
$(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
|
||||
$(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
|
||||
$(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
|
||||
|
@ -466,20 +465,6 @@ cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
|
|||
$(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
|
||||
$(PY_INCLUDE)\tupleobject.h
|
||||
|
||||
cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
|
||||
$(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
|
||||
$(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
|
||||
$(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
|
||||
$(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
|
||||
$(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
|
||||
$(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
|
||||
$(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
|
||||
$(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
|
||||
$(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
|
||||
$(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
|
||||
$(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
|
||||
$(PY_INCLUDE)\tupleobject.h
|
||||
|
||||
cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
|
||||
$(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
|
||||
pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
|
||||
|
|
|
@ -142,7 +142,6 @@ MODULES = \
|
|||
ArrayModule.obj \
|
||||
BinAscii.obj \
|
||||
CMathModule.obj \
|
||||
cStringIO.obj \
|
||||
ErrnoModule.obj \
|
||||
GetBuildInfo.obj \
|
||||
GetPathP.obj \
|
||||
|
@ -379,7 +378,7 @@ cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
|
|||
stringobject.h sysmodule.h traceback.h tupleobject.h
|
||||
|
||||
cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
|
||||
pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
|
||||
pyconfig.h dictobject.h fileobject.h floatobject.h \
|
||||
funcobject.h import.h intobject.h intrcheck.h listobject.h \
|
||||
longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
|
||||
mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
|
||||
|
@ -394,14 +393,6 @@ cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
|
|||
pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
|
||||
traceback.h tupleobject.h
|
||||
|
||||
cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
|
||||
pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
|
||||
funcobject.h import.h intobject.h intrcheck.h listobject.h \
|
||||
longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
|
||||
myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
|
||||
pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
|
||||
stringobject.h sysmodule.h traceback.h tupleobject.h
|
||||
|
||||
cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
|
||||
complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
|
||||
funcobject.h import.h intobject.h intrcheck.h listobject.h \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue