[Python-checkins] python/dist/src/Misc NEWS,1.504,1.505
nnorwitz@users.sourceforge.net
nnorwitz@users.sourceforge.net
2002年11月02日 09:46:26 -0800
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv24457/Misc
Modified Files:
NEWS
Log Message:
Fix SF #632624, test_resource failure on alpha/64bit
Return PyLongs instead ot PyInts.
On alphas, 9223372036854775807 became -1.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.504
retrieving revision 1.505
diff -C2 -d -r1.504 -r1.505
*** NEWS 26 Oct 2002 14:50:45 -0000 1.504
--- NEWS 2 Nov 2002 17:46:24 -0000 1.505
***************
*** 293,296 ****
--- 293,298 ----
-----------------
+ - resource.getrlimit() now returns longs instead of ints.
+
- readline now dynamically adjusts its input/output stream if
sys.stdin/stdout changes.