- 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 14 years ago
- 57d1a88 Fix imports from collections.abc by Raymond Hettinger · 14 years ago
- 3fcf002 Update whatsnew. Salt the random number seed. by Raymond Hettinger · 14 years ago
- 63b1767 Improve variable name (don't shadow a builtin). by Raymond Hettinger · 14 years ago
- 8ff1099 One more conversion from pow() to **. by Raymond Hettinger · 14 years ago
- 183cd1f * Remove dependency on binascii.hexlify by using int.from_bytes(). by Raymond Hettinger · 14 years ago
- e4a3e99 In the case where only a user supplied random() method is available, by Raymond Hettinger · 14 years ago
- f015b3f Neaten-up comments and warning message. by Raymond Hettinger · 14 years ago
- 05a505f Minor refactoring and cleanup. Extend looping randrange() technique to subclasses. by Raymond Hettinger · 14 years ago
- c585eec Fix test that depends on a particular implementation of random.choice(). by Raymond Hettinger · 14 years ago
- dc4872e Fix corner case for Random.choice() and add tests. by Raymond Hettinger · 14 years ago
- c324697 Small clean-ups. by Raymond Hettinger · 14 years ago
- 0515661 Issues #7889, #9025 and #9379: Improvements to the random module. by Raymond Hettinger · 14 years ago
- 3051cc3 Minor code cleanup by Raymond Hettinger · 14 years ago
- f763a72 Document which part of the random module module are guaranteed. by Raymond Hettinger · 14 years ago
- 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
- be40db0 Issue 6261: Clarify behavior of random.uniform(). by Raymond Hettinger · 15 years ago
- 886687d Use ABCs to validate documented restriction to Sets or Sequences. by Raymond Hettinger · 16 years ago
- 2f94736 Merged revisions 68378 via svnmerge from by Mark Dickinson · 16 years ago
- d18de0e Merged revisions 65259,65263,65296,65307,65321 via svnmerge from by Benjamin Peterson · 16 years ago
- fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 17 years ago
- 1acde19 Take Tim's advice and have random.sample() support only sequences and sets. by Raymond Hettinger · 17 years ago
- 28de64f Remove defunct parts of the random module by Raymond Hettinger · 17 years ago
- cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
- aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
- 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 19 years ago
- 91e27c2 Implement random.sample() using sets instead of dicts. by Raymond Hettinger · 19 years ago
- 42406e6 SF patch #1191489: Simplify logic in random.py by Raymond Hettinger · 20 years ago
- 362b929 Removed unused line. by Raymond Hettinger · 20 years ago
- ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
- 23f1241 SF #1027105: HardwareRandom should be renamed OSRandom by Raymond Hettinger · 20 years ago
- c1c43ca Fulfill Martin's request to use try/except rather than a "look before by Raymond Hettinger · 20 years ago
- bdbdfd7 SF bug #1022010: Import random fails by Raymond Hettinger · 20 years ago
- 7c2a85b HardwareRandom: Go back to multiplying by 2**-BPF instead of using by Tim Peters · 20 years ago
- 3fa19d7 Take advantage of the math library's ldexp for assembling a float by by Raymond Hettinger · 20 years ago
- 356a459 Teach the random module about os.urandom(). by Raymond Hettinger · 20 years ago
- 5dae505 Fix typo in comment. by Raymond Hettinger · 20 years ago
- 9021c95 SF bug #964230: random.choice([]) should return more intelligible exception by Raymond Hettinger · 20 years ago
- 2b55d35 Reflow long line. by Jeremy Hylton · 21 years ago
- 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
- 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
- 411c602 Minor fixup. "Random" was listed twice in __all__. by Raymond Hettinger · 21 years ago
- 2f726e9 SF bug #812202: randint is always even by Raymond Hettinger · 21 years ago
- 66d09f1 SF bug #801342: Bug (documentation or real, your choice) in random.sample. by Raymond Hettinger · 21 years ago
- 6229713 Eliminate unnecessary eval() in tests by Raymond Hettinger · 21 years ago
- 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
- f8a52d3 Removed deprecated functions by Raymond Hettinger · 21 years ago
- 5f078ff SF bug #759889: Pickling of Random is broken by Raymond Hettinger · 21 years ago
- 76ca1d4 randrange(): Repaired my overly optimistic rewrite, and added comments by Tim Peters · 21 years ago
- afb8979 randrange(): 2.3 can no longer raises OverflowError on an int() call, so by Tim Peters · 21 years ago
- fdbe522 SF bug #753602: random.sample not properly documented by Raymond Hettinger · 21 years ago
- b98154e 'sum' is no longer a good variable name. Use 'total' instead. by Raymond Hettinger · 21 years ago
- 7b0cf76 * Migrate sample distribution test from random.py to test_random.py. by Raymond Hettinger · 22 years ago
- 145a4a0 Much clearer when super() is used. by Raymond Hettinger · 22 years ago
- 3dd990c Move the statistical tests for four distributions into the unittest suite. by Raymond Hettinger · 22 years ago
- 73ced7e Correct long standing bugs in the methods for random distributions. by Raymond Hettinger · 22 years ago
- 8b9aa8d Remove the random=None nonsense from sample() before it gets set in stone. by Raymond Hettinger · 22 years ago
- 40f6217 SF patch 658251: Install a C implementation of the Mersenne Twister as the by Raymond Hettinger · 22 years ago
- c1ac194 Clarify and speedup test. by Raymond Hettinger · 22 years ago
- 311f419 Improve comments. Clarify docs. by Raymond Hettinger · 22 years ago
- c0b4034 Improved clarity and thoroughness of docstring. by Raymond Hettinger · 22 years ago
- ea002a1 Docstring typo fix by Andrew M. Kuchling · 22 years ago
- f24eb35 SF patch 629637: Add sample(population, k) method to the random module. by Raymond Hettinger · 22 years ago
- 9146f27 SF bug 594996: OverflowError in random.randrange by Tim Peters · 22 years ago
- ef4d4bd Whitespace normalized. by Raymond Hettinger · 22 years ago
- c32f033 Deprecated Random.cunifvariate clearing bug 506647. Also, added docstrings. by Raymond Hettinger · 22 years ago
- 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
- 570764d Use spaces, not tabs for indents. by Guido van Rossum · 22 years ago
- b760efb Closes patch 529408 deprecating random.stdgamma(). by Raymond Hettinger · 22 years ago
- ca6cdc2 Closes SF bug 527139. Moved temp variables inside guard. by Raymond Hettinger · 22 years ago
- 46c04e1 random.gauss() uses a piece of hidden state used by nothing else, by Tim Peters · 23 years ago
- f42d32c BDFL agreed with Tim: rehabilitate randint(). by Neal Norwitz · 23 years ago
- dc47a89 SF patch 483059: Avoid use of eval() in random.py, from Finn Bock. by Tim Peters · 23 years ago
- 0e6d213 Whitespace normalization. by Tim Peters · 24 years ago
- 0de6580 bunch more __all__ lists by Skip Montanaro · 24 years ago
- bcd725f Repaired a docstring. by Tim Peters · 24 years ago
- 0de88fc Change random.seed() so that it can get at the full range of possible by Tim Peters · 24 years ago
- 715c4c4 New comment block to Clarify a subtlety. by Tim Peters · 24 years ago
- e360d95 The combo of getstate/setstate/jumpahead is very powerful, but needs by Tim Peters · 24 years ago
- 85e2e47 SF bug 130030: Claim of bad betavariate algorithm. by Tim Peters · 24 years ago
- cd80410 Cosmetic changes after some sleep; no change in semantics. by Tim Peters · 24 years ago
- d52269b Fix bugs introduced by rewrite (in particular, time-based initialization by Tim Peters · 24 years ago
- d7b5e88 Reworked random.py so that it no longer depends on, and offers all the by Tim Peters · 24 years ago
- 0c9886d Whitespace normalization. by Tim Peters · 24 years ago
- c1d65c3 Repair senseless random.seed docstring (reported on c.l.py). by Tim Peters · 24 years ago
- e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 25 years ago
- 6c395ba Add Tim Peters' shuffle() algorithm. by Guido van Rossum · 25 years ago
- 3357561 Added randrange to list of exported functions. by Guido van Rossum · 26 years ago
- d03e119 Make gauss() semi-thread-safe. It can still give duplicate results, by Guido van Rossum · 26 years ago
- 33d7f1a Add Interfaces to replace remaining needs for importing whrandom. by Guido van Rossum · 26 years ago
- 5810297 Correction to vonmisesvariate() by Magnus Kessler: it should take and by Guido van Rossum · 27 years ago