Commit 0caa5766 authored by Mark Dickinson's avatar Mark Dickinson

Merged revisions 75346 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75346 | mark.dickinson | 2009-10-11 10:35:57 +0100 (Sun, 11 Oct 2009) | 1 line

  Fix 'primes 0 1'
........
parent edbc50cd
......@@ -3,7 +3,7 @@
# Print prime numbers in a given range
def primes(min, max):
if 2 >= min:
if max >= 2 >= min:
print(2)
primes = [2]
i = 3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment