summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 20:27:37 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 20:27:37 (GMT)
commit730001163f1bd7469c17743e1846cf2761639191 (patch)
tree2a566bd9998cc2fc632b40fb84bb47af8c721efe /Misc
parent3042b5ebf4aee83957428870b86de394646b731c (diff)
parenta2dfc35a1341fc73a074cda9190bb99a821f8095 (diff)
downloadcpython-730001163f1bd7469c17743e1846cf2761639191.zip
cpython-730001163f1bd7469c17743e1846cf2761639191.tar.gz
cpython-730001163f1bd7469c17743e1846cf2761639191.tar.bz2
Issue #13355: Raise ValueError on random.triangular call with invalid params.
Initial patch by Yuriy Senko.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a6b42e2..29a04b7 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1110,6 +1110,7 @@ Nick Seidenman
Žiga Seilnacht
Yury Selivanov
Fred Sells
+Yuriy Senko
Jiwon Seo
Iñigo Serna
Joakim Sernbrant
diff --git a/Misc/NEWS b/Misc/NEWS
index c2f9e7a..eeeb9cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #13355: Raise ValueError on random.triangular call with invalid params.
+ Initial patch by Yuriy Senko.
+
- Issue #16658: add missing return to HTTPConnection.send()
Patch by Jeff Knupp.