[Python-checkins] python/dist/src/Python compile.c,2.281,2.281.2.1
jackjansen@users.sourceforge.net
jackjansen@users.sourceforge.net
2003年4月29日 05:00:37 -0700
- Previous message: [Python-checkins] python/dist/src/Tools/idle CREDITS.txt,NONE,1.2.2.1 HISTORY.txt,NONE,1.2.2.1 INSTALL.txt,NONE,1.2.2.1 LICENSE.txt,NONE,1.2.2.1 Makefile,NONE,1.2.2.1 RemoteDebugger.py,NONE,1.2.2.1 RemoteObjectBrowser.py,NONE,1.2.2.1 aboutDialog.py,NONE,1.2.2.1 boolcheck.py,NONE,1.2.2.1 config-extensions.def,NONE,1.2.2.1 config-highlight.def,NONE,1.2.2.1 config-keys.def,NONE,1.2.2.1 config-main.def,NONE,1.2.2.1 configDialog.py,NONE,1.2.2.1 configHandler.py,NONE,1.2.2.1 configHelpSourceEdit.py,NONE,1.2.2.1 configSectionNameDialog.py,NONE,1.2.2.1 dynOptionMenuWidget.py,NONE,1.2.2.1 interruptmodule.c,NONE,1.2.2.1 keybindingDialog.py,NONE,1.2.2.1 macosx_main.py,NONE,1.2.2.1 rpc.py,NONE,1.2.2.1 run.py,NONE,1.2.2.1 setup.cfg,NONE,1.2.2.1 tabpage.py,NONE,1.2.2.1 textView.py,NONE,1.2.2.1
- Next message: [Python-checkins] python/dist/src/Mac/Tools/IDE PythonIDEMain.py,1.33,1.33.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv24579
Modified Files:
Tag: r23b1-branch
compile.c
Log Message:
Added cast to shut up warning.
Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.281
retrieving revision 2.281.2.1
diff -C2 -d -r2.281 -r2.281.2.1
*** compile.c 24 Apr 2003 05:45:23 -0000 2.281
--- compile.c 29 Apr 2003 12:00:20 -0000 2.281.2.1
***************
*** 421,425 ****
}
}
! code = PyString_FromStringAndSize(codestr, codelen);
PyMem_Free(codestr);
return code;
--- 421,425 ----
}
}
! code = PyString_FromStringAndSize((char *)codestr, codelen);
PyMem_Free(codestr);
return code;
- Previous message: [Python-checkins] python/dist/src/Tools/idle CREDITS.txt,NONE,1.2.2.1 HISTORY.txt,NONE,1.2.2.1 INSTALL.txt,NONE,1.2.2.1 LICENSE.txt,NONE,1.2.2.1 Makefile,NONE,1.2.2.1 RemoteDebugger.py,NONE,1.2.2.1 RemoteObjectBrowser.py,NONE,1.2.2.1 aboutDialog.py,NONE,1.2.2.1 boolcheck.py,NONE,1.2.2.1 config-extensions.def,NONE,1.2.2.1 config-highlight.def,NONE,1.2.2.1 config-keys.def,NONE,1.2.2.1 config-main.def,NONE,1.2.2.1 configDialog.py,NONE,1.2.2.1 configHandler.py,NONE,1.2.2.1 configHelpSourceEdit.py,NONE,1.2.2.1 configSectionNameDialog.py,NONE,1.2.2.1 dynOptionMenuWidget.py,NONE,1.2.2.1 interruptmodule.c,NONE,1.2.2.1 keybindingDialog.py,NONE,1.2.2.1 macosx_main.py,NONE,1.2.2.1 rpc.py,NONE,1.2.2.1 run.py,NONE,1.2.2.1 setup.cfg,NONE,1.2.2.1 tabpage.py,NONE,1.2.2.1 textView.py,NONE,1.2.2.1
- Next message: [Python-checkins] python/dist/src/Mac/Tools/IDE PythonIDEMain.py,1.33,1.33.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]