[Python-checkins] r63764 - python/branches/okkoto-sizeof/Python/sysmodule.c

robert.schuppenies python-checkins at python.org
Wed May 28 18:22:04 CEST 2008


Author: robert.schuppenies
Date: Wed May 28 18:22:04 2008
New Revision: 63764

Log:
corrected return value described in doc


Modified:
   python/branches/okkoto-sizeof/Python/sysmodule.c

Modified: python/branches/okkoto-sizeof/Python/sysmodule.c
==============================================================================
--- python/branches/okkoto-sizeof/Python/sysmodule.c	(original)
+++ python/branches/okkoto-sizeof/Python/sysmodule.c	Wed May 28 18:22:04 2008
@@ -659,7 +659,7 @@
 }
 
 PyDoc_STRVAR(getsizeof_doc,
-"getsizeof(object) -> long\n\
+"getsizeof(object) -> int\n\
 \n\
 Return the size of object in bytes.");
 


More information about the Python-checkins mailing list