diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-14 19:51:34 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-14 19:51:34 (GMT) |
commit | 866964c3a3823c8d42c51a41c5c7264a569200b4 (patch) | |
tree | 0ad3fb175d1d8fadb3005ed94ff43a97e82caa0e /Misc/NEWS | |
parent | a828586c3a2a2c07558f8872ef115adc3e24ad9f (diff) | |
download | cpython-866964c3a3823c8d42c51a41c5c7264a569200b4.zip cpython-866964c3a3823c8d42c51a41c5c7264a569200b4.tar.gz cpython-866964c3a3823c8d42c51a41c5c7264a569200b4.tar.bz2 |
Apply SF patch 652930: Add optional base argument to math.log(x[, base]).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -564,6 +564,8 @@ Library - Added conversion functions math.degrees() and math.radians(). +- math.log() now takes an optional argument: math.log(x[, base]). + - ftplib.retrlines() now tests for callback is None rather than testing for False. Was causing an error when given a callback object which was callable but also returned len() as zero. The change may |