summaryrefslogtreecommitdiffstats
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-11 04:24:12 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-11 04:24:12 (GMT)
commit078151da901bebce6eb232d958fbbb1e5ced4399 (patch)
treed25483ba545d58138518591645e60caa20a7262b /Objects/intobject.c
parentd92ae840e940db2fc8e9ec6293fe22dbb73f4514 (diff)
downloadcpython-078151da901bebce6eb232d958fbbb1e5ced4399.zip
cpython-078151da901bebce6eb232d958fbbb1e5ced4399.tar.gz
cpython-078151da901bebce6eb232d958fbbb1e5ced4399.tar.bz2
Implement stage B0 of PEP 237: add warnings for operations that
currently return inconsistent results for ints and longs; in particular: hex/oct/%u/%o/%x/%X of negative short ints, and x<<n that either loses bits or changes sign. (No warnings for repr() of a long, though that will also change to lose the trailing 'L' eventually.) This introduces some warnings in the test suite; I'll take care of those later.
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r--Objects/intobject.c28
1 files changed, 25 insertions, 3 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 4f43b11..728f798 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -659,7 +659,7 @@ int_invert(PyIntObject *v)
static PyObject *
int_lshift(PyIntObject *v, PyIntObject *w)
{
- register long a, b;
+ long a, b, c;
CONVERT_TO_LONG(v, a);
CONVERT_TO_LONG(w, b);
if (b < 0) {
@@ -669,10 +669,20 @@ int_lshift(PyIntObject *v, PyIntObject *w)
if (a == 0 || b == 0)
return int_pos(v);
if (b >= LONG_BIT) {
+ if (PyErr_Warn(PyExc_DeprecationWarning,
+ "x<<y losing bits or changing sign "
+ "will return a long in Python 2.4 and up") < 0)
+ return NULL;
return PyInt_FromLong(0L);
}
- a = (long)((unsigned long)a << b);
- return PyInt_FromLong(a);
+ c = (long)((unsigned long)a << b);
+ if ((c >> b) != a || (c < 0 && a > 0)) {
+ if (PyErr_Warn(PyExc_DeprecationWarning,
+ "x<<y losing bits or changing sign "
+ "will return a long in Python 2.4 and up") < 0)
+ return NULL;
+ }
+ return PyInt_FromLong(c);
}
static PyObject *
@@ -761,6 +771,12 @@ int_oct(PyIntObject *v)
{
char buf[100];
long x = v -> ob_ival;
+ if (x < 0) {
+ if (PyErr_Warn(PyExc_DeprecationWarning,
+ "hex()/oct() of negative int will return "
+ "a signed string in Python 2.4 and up") < 0)
+ return NULL;
+ }
if (x == 0)
strcpy(buf, "0");
else
@@ -773,6 +789,12 @@ int_hex(PyIntObject *v)
{
char buf[100];
long x = v -> ob_ival;
+ if (x < 0) {
+ if (PyErr_Warn(PyExc_DeprecationWarning,
+ "hex()/oct() of negative int will return "
+ "a signed string in Python 2.4 and up") < 0)
+ return NULL;
+ }
PyOS_snprintf(buf, sizeof(buf), "0x%lx", x);
return PyString_FromString(buf);
}