[Python-checkins] CVS: python/dist/src/Modules mathmodule.c,2.49,2.50

Tim Peters python-dev@python.org
Mon, 3 Jul 2000 15:41:40 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv6711/python/dist/src/modules

Modified Files:
	mathmodule.c 
Log Message:
Typo repair in docstring -- my fault.


Index: mathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v
retrieving revision 2.49
retrieving revision 2.50
diff -C2 -r2.49 -r2.50
*** mathmodule.c	2000/07/03 18:11:56	2.49
--- mathmodule.c	2000/07/03 22:41:34	2.50
***************
*** 166,170 ****
  "frexp(x)\n\
  \n\
! Return the matissa and exponent of x, as pair (m, e).\n\
  m is a float and e is an int, such that x = m * 2.**e.\n\
  If x is 0, m and e are both 0.  Else 0.5 <= abs(m) < 1.0.";
--- 166,170 ----
  "frexp(x)\n\
  \n\
! Return the mantissa and exponent of x, as pair (m, e).\n\
  m is a float and e is an int, such that x = m * 2.**e.\n\
  If x is 0, m and e are both 0.  Else 0.5 <= abs(m) < 1.0.";