summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-30 05:09:37 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-30 05:09:37 (GMT)
commitd38b1c74f3f28a3f9a73c142d9be83425adaa6e1 (patch)
treed3b062c6eaa6d7e6c5be8cfdaeb71d7470563a68 /Misc/NEWS
parentac1af8093ef39028c993c5b343c557d94528fd25 (diff)
downloadcpython-d38b1c74f3f28a3f9a73c142d9be83425adaa6e1.zip
cpython-d38b1c74f3f28a3f9a73c142d9be83425adaa6e1.tar.gz
cpython-d38b1c74f3f28a3f9a73c142d9be83425adaa6e1.tar.bz2
SF [#466125] PyLong_AsLongLong works for any integer.
Generalize PyLong_AsLongLong to accept int arguments too. The real point is so that PyArg_ParseTuple's 'L' code does too. That code was undocumented (AFAICT), so documented it.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c05ff95..1b2b76b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,10 @@ Build
C API
+- PyLong_AsLongLong() now accepts int (as well as long) arguments.
+ Consequently, PyArg_ParseTuple's 'L' code also accepts int (as well
+ as long) arguments.
+
New platforms
Tests