mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Got the new structure working with MSVC 4.2.
main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols.
This commit is contained in:
parent
fb84255e67
commit
29c1ea5af0
5 changed files with 192 additions and 3320 deletions
|
|
@ -60,6 +60,9 @@ extern void inittime();
|
|||
extern void initthread();
|
||||
extern void initcStringIO();
|
||||
extern void initcPickle();
|
||||
#ifdef WIN32
|
||||
extern void initmsvcrt();
|
||||
#endif
|
||||
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
||||
|
|
@ -98,6 +101,9 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
#endif
|
||||
{"cStringIO", initcStringIO},
|
||||
{"cPickle", initcPickle},
|
||||
#ifdef WIN32
|
||||
{"msvcrt", initmsvcrt},
|
||||
#endif
|
||||
|
||||
/* -- ADDMODULE MARKER 2 -- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue