[Python-checkins] CVS: python/dist/src/Python compile.c,2.236,2.237 sysmodule.c,2.99,2.100

Neal Norwitz nnorwitz@users.sourceforge.net
Mon, 28 Jan 2002 16:53:43 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15858/Python

Modified Files:
	compile.c sysmodule.c 
Log Message:
Fix spelling mistakes.  Bugfix candidates.

Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.236
retrieving revision 2.237
diff -C2 -d -r2.236 -r2.237
*** compile.c	2002/01/15 21:06:07	2.236
--- compile.c	2002/01/29 00:53:41	2.237
***************
*** 62,66 ****
  
  #define LOCAL_GLOBAL \
! "name '%.400s' is a function paramter and declared global"
  
  #define LATE_FUTURE \
--- 62,66 ----
  
  #define LOCAL_GLOBAL \
! "name '%.400s' is a function parameter and declared global"
  
  #define LATE_FUTURE \

Index: sysmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v
retrieving revision 2.99
retrieving revision 2.100
diff -C2 -d -r2.99 -r2.100
*** sysmodule.c	2002/01/12 11:05:11	2.99
--- sysmodule.c	2002/01/29 00:53:41	2.100
***************
*** 411,417 ****
  \n\
  Set the flags that will be used for dlopen() calls. Among other\n\
! things, this will enable a lazy resolving of symbols when imporing\n\
  a module, if called as sys.setdlopenflags(0)\n\
! To share symols across extension modules, call as\n\
  sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)";
  
--- 411,417 ----
  \n\
  Set the flags that will be used for dlopen() calls. Among other\n\
! things, this will enable a lazy resolving of symbols when importing\n\
  a module, if called as sys.setdlopenflags(0)\n\
! To share symbols across extension modules, call as\n\
  sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)";
  
***************
*** 674,678 ****
  maxint -- the largest supported integer (the smallest is -maxint-1)\n\
  maxunicode -- the largest supported character\n\
! builtin_module_names -- tuple of module names built into this intepreter\n\
  version -- the version of this interpreter as a string\n\
  version_info -- version information as a tuple\n\
--- 674,678 ----
  maxint -- the largest supported integer (the smallest is -maxint-1)\n\
  maxunicode -- the largest supported character\n\
! builtin_module_names -- tuple of module names built into this interpreter\n\
  version -- the version of this interpreter as a string\n\
  version_info -- version information as a tuple\n\