[Python-checkins] r43364 - python/trunk/Doc/api/concrete.tex
georg.brandl
python-checkins at python.org
Tue Mar 28 00:09:16 CEST 2006
Author: georg.brandl
Date: Tue Mar 28 00:09:16 2006
New Revision: 43364
Modified:
python/trunk/Doc/api/concrete.tex
Log:
Document change made to number of preallocated integers.
Modified: python/trunk/Doc/api/concrete.tex
==============================================================================
--- python/trunk/Doc/api/concrete.tex (original)
+++ python/trunk/Doc/api/concrete.tex Tue Mar 28 00:09:16 2006
@@ -156,7 +156,7 @@
Create a new integer object with a value of \var{ival}.
The current implementation keeps an array of integer objects for all
- integers between \code{-1} and \code{100}, when you create an int in
+ integers between \code{-5} and \code{256}, when you create an int in
that range you actually just get back a reference to the existing
object. So it should be possible to change the value of \code{1}. I
suspect the behaviour of Python in this case is undefined. :-)
More information about the Python-checkins
mailing list