Overview of DVCS workflows from Python proposal
1–7 of 7 posts
Re: Overview of DVCS workflows from Python proposal
#2This actually printed "hg" for me the first time I ran it.
Re: Overview of DVCS workflows from Python proposal
#3"print(random.choice(['svn', 'bzr', 'hg', 'git']))" This actually printed "hg" for me the first time I ran it.
Re: Overview of DVCS workflows from Python proposal
#4"print(random.choice(['svn', 'bzr', 'hg', 'git']))" This actually printed "hg" for me the first time I ran it.
And git came on 12th try.
Re: Overview of DVCS workflows from Python proposal
#5"print(random.choice(['svn', 'bzr', 'hg', 'git']))" This actually printed "hg" for me the first time I ran it.
Traceback (most recent call last):
File "", line 1, in
NameError: name 'random' is not definedRe: Overview of DVCS workflows from Python proposal
#6"print(random.choice(['svn', 'bzr', 'hg', 'git']))" This actually printed "hg" for me the first time I ran it.
Chosen DVCS
import random
print(random.choice(['svn', 'bzr', 'hg', 'git']))
http://svn.python.org/view/peps/trunk/pep-0374.txt?r1=70206&...Re: Overview of DVCS workflows from Python proposal
#7"print(random.choice(['svn', 'bzr', 'hg', 'git']))" This actually printed "hg" for me the first time I ran it.
Traceback (most recent call last): File " ", line 1, in NameError: name 'random' is not defined