summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
Commit message (Collapse)AuthorAgeFilesLines
* mergeRaymond Hettinger2014-05-261-1/+4
|\
| * Issue 13355: Make random.triangular degrade gracefully when low == high.Raymond Hettinger2014-05-261-1/+4
| |
* | Improve readabilityRaymond Hettinger2014-05-191-1/+1
|/
* Issue #21470: Do a better job seeding the random number generatorRaymond Hettinger2014-05-141-1/+3
| | | | to fully cover its state space.
* Issue #19218: Rename collections.abc to _collections_abc in order to speed ↵Christian Heimes2013-10-131-1/+1
| | | | up interpreter start
* Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-12/+17
|\
| * Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-11/+17
| |
* | Issue #19169: Micro refactoring with a micro benefit for brevity and speed.Raymond Hettinger2013-10-061-2/+2
| |
* | Removing the merge conflict markers.Senthil Kumaran2013-09-121-5/+0
| | | | | | | | - my previous removal and hg resolve mark had still left them and hooks did not catch it too!
* | merge from 3.3Senthil Kumaran2013-09-121-0/+7
|\ \ | |/ | | | | | | Improve the docstring of random.shuffle. Inform users not to provide int arg. Addresses issue #14927
| * Improve the docstring of random.shuffle. Inform users not to provide int arg.Senthil Kumaran2013-09-121-0/+2
| | | | | | | | Addresses issue #14927
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|\ \ | |/ | | | | error messages and comments.
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| | | | | | | | error messages and comments.
* | Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-131-10/+0
|\ \ | |/
| * Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-131-10/+0
| |
* | Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-121-0/+10
|\ \ | |/ | | | | Initial patch by Yuriy Senko.
| * Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-121-0/+10
| | | | | | | | Initial patch by Yuriy Senko.
* | #17489: Add explanatory comment that __getstate__ is not called.R David Murray2013-04-021-0/+3
| | | | | | | | | | | | We don't put coverage directives in the stdlib, but anyone looking at a coverage report for Random should see the comment and understand why the lines aren't covered.
* | Issue #17141: random.vonmisesvariate() no more hangs for large kappas.Serhiy Storchaka2013-02-101-8/+6
|\ \ | |/
| * Issue #17141: random.vonmisesvariate() no more hangs for large kappas.Serhiy Storchaka2013-02-101-8/+6
| |\
| | * Issue #17141: random.vonmisesvariate() no more hangs for large kappas.Serhiy Storchaka2013-02-101-8/+6
| | |
* | | Issue #17149: merge fix from 3.3.Mark Dickinson2013-02-101-2/+2
|\ \ \ | |/ /
| * | Issue #17149: merge fix from 3.2.Mark Dickinson2013-02-101-2/+2
| |\ \ | | |/
| | * Issue #17149: Fix random.vonmisesvariate to always return results in [0, ↵Mark Dickinson2013-02-101-2/+2
| | | | | | | | | | | | 2*math.pi].
* | | Issue #15837: add some tests for random.shuffle().Antoine Pitrou2012-11-041-3/+4
|/ / | | | | | | Patch by Alessandro Moura.
* | Issue #14926: merge with 3.2Sandro Tosi2012-06-021-1/+1
|\ \ | |/
| * Issue #14926: fix docstring highlightSandro Tosi2012-06-021-1/+1
| |
* | Merge 3.2Brian Curtin2011-11-111-1/+0
|\ \ | |/
| * Fix #13384. Remove __future__ import in 3.x code.Brian Curtin2011-11-111-1/+0
| |
* | Code simplification suggested by Sven Marnach.Raymond Hettinger2011-06-251-5/+3
|\ \ | |/
| * Code simplification suggested by Sven Marnach.Raymond Hettinger2011-06-251-5/+3
| |
| * Sync-up minor code edits with the default branch.Raymond Hettinger2011-05-051-4/+4
| |
* | Avoid codec spelling issues by just using the utf-8 default.Raymond Hettinger2011-05-051-1/+1
|\ \ | |/
| * Avoid codec spelling issues by just using the utf-8 default.Raymond Hettinger2011-05-051-1/+1
| |
* | #11848: Merge with 3.2.Ezio Melotti2011-04-151-1/+1
|\ \ | |/
| * #11848: Merge with 3.1.Ezio Melotti2011-04-151-1/+1
| |\
| | * #11848: replace dead link in random.betavariate comment.Ezio Melotti2011-04-151-1/+1
| | |
* | | Issue 10787: Document the probability density function for random.gammavariate.Raymond Hettinger2011-03-221-0/+6
|\ \ \ | |/ /
| * | Issue 10787: Document the probability density function for random.gammavariate.Raymond Hettinger2011-03-221-0/+6
| |\ \ | | |/
| | * Issue 10787: Document the probability density function for random.gammavariate.Raymond Hettinger2011-03-221-0/+6
| | |
| | * Issue #7435: Remove reference to long in docstring. Thanks flox.Mark Dickinson2009-12-051-1/+1
| | |
* | | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303.
* | | Fix imports from collections.abcRaymond Hettinger2011-02-231-4/+4
|/ /
* | Update whatsnew. Salt the random number seed.Raymond Hettinger2010-12-081-4/+7
| |
* | Improve variable name (don't shadow a builtin).Raymond Hettinger2010-09-081-3/+3
| |
* | One more conversion from pow() to **.Raymond Hettinger2010-09-081-1/+1
| |
* | * Remove dependency on binascii.hexlify by using int.from_bytes().Raymond Hettinger2010-09-081-10/+9
| | | | | | | | | | | | | | * Use the new super() with no arguments. * Replace pow() call with the ** operator. * Increase urandom seeding from 16 bytes to 32 bytes. * Clean-up docstring.
* | In the case where only a user supplied random() method is available,Raymond Hettinger2010-09-081-12/+12
| | | | | | | | adopt a strategy that makes the fewest calls to random().
* | Neaten-up comments and warning message.Raymond Hettinger2010-09-071-4/+4
| |
* | Minor refactoring and cleanup. Extend looping randrange() technique to ↵Raymond Hettinger2010-09-071-20/+23
| | | | | | | | subclasses.