diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-01-03 17:19:26 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-01-03 17:19:26 (GMT) |
commit | 0fa10b3cd5de4090b86c8f88c5f30d2e6a9686ac (patch) | |
tree | 892dd474e799e78aed75a21695e41d3754376be8 /PC | |
parent | 37fc82348c4956ea543475ef755d63dfff04dbf4 (diff) | |
download | cpython-0fa10b3cd5de4090b86c8f88c5f30d2e6a9686ac.zip cpython-0fa10b3cd5de4090b86c8f88c5f30d2e6a9686ac.tar.gz cpython-0fa10b3cd5de4090b86c8f88c5f30d2e6a9686ac.tar.bz2 |
Issue #4817: Remove unused function PyOS_GetLastModificationTime.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 4 | ||||
-rw-r--r-- | PC/VS7.1/pythoncore.vcproj | 3 | ||||
-rw-r--r-- | PC/VS8.0/pythoncore.vcproj | 4 | ||||
-rw-r--r-- | PC/os2emx/Makefile | 1 | ||||
-rw-r--r-- | PC/os2emx/python27.def | 3 | ||||
-rw-r--r-- | PC/os2vacpp/makefile | 2 | ||||
-rw-r--r-- | PC/os2vacpp/makefile.omk | 2 | ||||
-rw-r--r-- | PC/os2vacpp/python.def | 1 |
8 files changed, 0 insertions, 20 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 5a89a44..756e271 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -410,10 +410,6 @@ SOURCE=..\..\Python\getcopyright.c # End Source File
# Begin Source File
-SOURCE=..\..\Python\getmtime.c
-# End Source File
-# Begin Source File
-
SOURCE=..\..\Python\getopt.c
# End Source File
# Begin Source File
diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj index c2ccebb..601bfa0 100644 --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -569,9 +569,6 @@ RelativePath="..\..\Python\getcopyright.c"> </File> <File - RelativePath="..\..\Python\getmtime.c"> - </File> - <File RelativePath="..\..\Python\getopt.c"> </File> <File diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj index 4720a2f..d1be268 100644 --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1687,10 +1687,6 @@ > </File> <File - RelativePath="..\..\Python\getmtime.c" - > - </File> - <File RelativePath="..\..\Python\getopt.c" > </File> diff --git a/PC/os2emx/Makefile b/PC/os2emx/Makefile index 9bfd927..82d548e 100644 --- a/PC/os2emx/Makefile +++ b/PC/os2emx/Makefile @@ -351,7 +351,6 @@ SRC.PYTHON= $(addprefix $(TOP), \ Python/getargs.c \ Python/getcompiler.c \ Python/getcopyright.c \ - Python/getmtime.c \ Python/getplatform.c \ Python/getversion.c \ Python/graminit.c \ diff --git a/PC/os2emx/python27.def b/PC/os2emx/python27.def index e41303d..1a258e7 100644 --- a/PC/os2emx/python27.def +++ b/PC/os2emx/python27.def @@ -931,9 +931,6 @@ EXPORTS ; From python27_s.lib(getcopyright) "Py_GetCopyright" -; From python27_s.lib(getmtime) - "PyOS_GetLastModificationTime" - ; From python27_s.lib(getplatform) "Py_GetPlatform" diff --git a/PC/os2vacpp/makefile b/PC/os2vacpp/makefile index c75bec3..1608960 100644 --- a/PC/os2vacpp/makefile +++ b/PC/os2vacpp/makefile @@ -1693,8 +1693,6 @@ getcopyright.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 -getmtime.obj: pyconfig.h - getplatform.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 \ diff --git a/PC/os2vacpp/makefile.omk b/PC/os2vacpp/makefile.omk index e291627..a380c03 100644 --- a/PC/os2vacpp/makefile.omk +++ b/PC/os2vacpp/makefile.omk @@ -1155,8 +1155,6 @@ getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ stringobject.h sysmodule.h traceback.h tupleobject.h -getmtime.obj: pyconfig.h - getplatform.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 longobject.h \ diff --git a/PC/os2vacpp/python.def b/PC/os2vacpp/python.def index 79d05b0..ba0dfd6 100644 --- a/PC/os2vacpp/python.def +++ b/PC/os2vacpp/python.def @@ -284,7 +284,6 @@ EXPORTS PyNumber_Xor PyOS_AfterFork PyOS_FiniInterrupts - PyOS_GetLastModificationTime PyOS_InitInterrupts PyOS_InterruptOccurred PyOS_Readline |