summaryrefslogtreecommitdiff
path: root/python-3-changes.txt
diff options
context:
space:
mode:
authorThorsten Behrens <sbehrens@gmx.li>2011-01-06 07:18:12 -0500
committerThorsten Behrens <sbehrens@gmx.li>2011-01-06 07:18:12 -0500
commit60896cc61a960e6bfef680ad890c0f848c9fc27c (patch)
treed8ce1bbb517917f20e1fa1603a44a8f2384827e9 /python-3-changes.txt
parentb27696462b1e7c6c53ce2ac6760567eb6ff744b6 (diff)
downloadpycrypto-60896cc61a960e6bfef680ad890c0f848c9fc27c.tar.gz
Fix AllOrNothing and random.sample()
o AllOrNothing no longer fails occasionally. Patch by Lorenz Quack o random.sample() works on Python 2.1. Patch by Paul Koning and Lorenz Quack
Diffstat (limited to 'python-3-changes.txt')
-rw-r--r--python-3-changes.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/python-3-changes.txt b/python-3-changes.txt
index ea2c04c..ca6f5a6 100644
--- a/python-3-changes.txt
+++ b/python-3-changes.txt
@@ -58,12 +58,10 @@ Use instead assertEqual(expr,True) for assert_ and assertEqual(expr,False) for
failIf
Added unit tests for Crypto.Random.random. Fixed random.shuffle().
-Not changed: random.sample() fails on Python 2.1. This is now exposed through
- the unit test.
+random.sample() changed to no longer fail on Python 2.1.
Added unit test for Crypto.Protocol.AllOrNothing.
-Not changed: AllOrNothing fails when called a few times (<10, usually). This
- is now exposed through the unit test.
+AllOrNothing changed to no longer fail occasionally.
C code: