[Python-Dev] PEP 374 (DVCS) now in reST
Nick Coghlan
ncoghlan at gmail.com
Sat Jan 24 02:44:10 CET 2009
Brett Cannon wrote:
> On Fri, Jan 23, 2009 at 12:11, Steven Bethard <steven.bethard at gmail.com> wrote:
>> On Fri, Jan 23, 2009 at 12:06 PM, "Martin v. Löwis" <martin at v.loewis.de> wrote:
>>>> import random
>>>> print(random.choice('svn', 'bzr', 'hg', 'git'))
>>> Nice! So it's bzr, as my machine just told me (after adding
>>> the square brackets).
>> Wow, that decision was a lot easier than I thought it would be. ;-)
>
> But my machine just told me svn, which is even easier as that means we
> don't need to change anything. =)
Mine briefly flirted with git, but quickly changed its mind. It *is* a
Kubuntu machine though, so it's probably biased :)
Cheers,
Nick.
>>> import random
>>> random.choice(['svn', 'bzr', 'hg', 'git'])
'git'
>>> random.choice(['svn', 'bzr', 'hg', 'git'])
'bzr'
>>> random.choice(['svn', 'bzr', 'hg', 'git'])
'bzr'
>>> random.choice(['svn', 'bzr', 'hg', 'git'])
'bzr'
--
Nick Coghlan | ncoghlan at gmail.com | Brisbane, Australia
---------------------------------------------------------------
More information about the Python-Dev
mailing list