[Python-checkins] python/dist/src/Doc/api concrete.tex, 1.25.10.7,
1.25.10.8
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Wed Jun 2 08:45:50 EDT 2004
Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15695
Modified Files:
Tag: release23-maint
concrete.tex
Log Message:
Document PyModule_AddIntConstant to take a long. Fixes #962471.
Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.25.10.7
retrieving revision 1.25.10.8
diff -C2 -d -r1.25.10.7 -r1.25.10.8
*** concrete.tex 25 Mar 2004 08:55:58 -0000 1.25.10.7
--- concrete.tex 2 Jun 2004 12:45:46 -0000 1.25.10.8
***************
*** 2236,2240 ****
\begin{cfuncdesc}{int}{PyModule_AddIntConstant}{PyObject *module,
! char *name, int value}
Add an integer constant to \var{module} as \var{name}. This
convenience function can be used from the module's initialization
--- 2236,2240 ----
\begin{cfuncdesc}{int}{PyModule_AddIntConstant}{PyObject *module,
! char *name, long value}
Add an integer constant to \var{module} as \var{name}. This
convenience function can be used from the module's initialization
More information about the Python-checkins
mailing list