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
1d48deb2
Commit
1d48deb2
authored
Oct 13, 2007
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove more hotshot cruft.
parent
662cece5
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
17 deletions
+1
-17
PC/VC6/pythoncore.dsp
PC/VC6/pythoncore.dsp
+0
-4
PC/config.c
PC/config.c
+0
-1
PC/os2emx/Makefile
PC/os2emx/Makefile
+1
-5
PC/os2emx/config.c
PC/os2emx/config.c
+0
-2
PCbuild8/pythoncore/pythoncore.vcproj
PCbuild8/pythoncore/pythoncore.vcproj
+0
-4
Tools/scripts/README
Tools/scripts/README
+0
-1
No files found.
PC/VC6/pythoncore.dsp
View file @
1d48deb2
...
...
@@ -137,10 +137,6 @@ SOURCE=..\..\Modules\_heapqmodule.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\_hotshot.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\_localemodule.c
# End Source File
# Begin Source File
...
...
PC/config.c
View file @
1d48deb2
...
...
@@ -99,7 +99,6 @@ struct _inittab _PyImport_Inittab[] = {
{
"_codecs"
,
init_codecs
},
{
"_weakref"
,
init_weakref
},
{
"_hotshot"
,
init_hotshot
},
{
"_random"
,
init_random
},
{
"_bisect"
,
init_bisect
},
{
"_heapq"
,
init_heapq
},
...
...
PC/os2emx/Makefile
View file @
1d48deb2
...
...
@@ -437,8 +437,7 @@ EASYEXTMODULES= fpectl \
# Python modules to be dynamically loaded that need explicit build rules
# (either multiple source files and/or non-standard module naming)
# (NOTE: use shortened names for modules affected by 8 char name limit)
HARDEXTMODULES
=
_hotshot
\
_socket
\
HARDEXTMODULES
=
_socket
\
_testcap
\
unicoded
...
...
@@ -567,9 +566,6 @@ $(PGEN.EXE): $(OBJ.PGEN) $(OUT)pgen.def
# awkward handling (due e.g. to non-std naming, or multiple source files)
# - standard modules
_hotshot$(MODULE.EXT)
:
$(OUT)_hotshot$O $(OUT)_hotshot_m.def $(PYTHON.IMPLIB)
$(LD)
$(LDFLAGS.DLL)
-o
$@
$
(
^^
)
$
(
L^
)
$(LIBS)
_socket$(MODULE.EXT)
:
$(OUT)socketmodule$O $(OUT)_socket_m.def $(PYTHON.IMPLIB)
$(LD)
$(LDFLAGS.DLL)
-o
$@
$
(
^^
)
$
(
L^
)
$(LIBS)
...
...
PC/os2emx/config.c
View file @
1d48deb2
...
...
@@ -75,7 +75,6 @@ extern void initzipimport();
#if !HAVE_DYNAMIC_LOADING
extern
void
init_curses
();
extern
void
init_curses_panel
();
extern
void
init_hotshot
();
extern
void
init_testcapi
();
extern
void
initbz2
();
extern
void
initfpectl
();
...
...
@@ -134,7 +133,6 @@ struct _inittab _PyImport_Inittab[] = {
#if !HAVE_DYNAMIC_LOADING
{
"_curses"
,
init_curses
},
{
"_curses_panel"
,
init_curses_panel
},
{
"_hotshot"
,
init_hotshot
},
{
"_testcapi"
,
init_testcapi
},
{
"bz2"
,
initbz2
},
{
"fpectl"
,
initfpectl
},
...
...
PCbuild8/pythoncore/pythoncore.vcproj
View file @
1d48deb2
...
...
@@ -1413,10 +1413,6 @@
RelativePath=
"..\..\Modules\_heapqmodule.c"
>
</File>
<File
RelativePath=
"..\..\Modules\_hotshot.c"
>
</File>
<File
RelativePath=
"..\..\Modules\_localemodule.c"
>
...
...
Tools/scripts/README
View file @
1d48deb2
...
...
@@ -30,7 +30,6 @@ ftpmirror.py FTP mirror script
google.py Open a webbrowser with Google.
gprof2html.py Transform gprof(1) output into useful HTML.
h2py.py Translate #define's into Python assignments
hotshotmain.py Main program to run script under control of hotshot
idle Main program to start IDLE
ifdef.py Remove #if(n)def groups from C sources
lfcr.py Change LF line endings to CRLF (Unix to Windows)
...
...
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