From: Georg Brandl Date: Sun, 28 Oct 2012 09:12:47 +0000 (+0100) Subject: Update current version of the "dailybuild" script. X-Git-Tag: v2.7.4rc1~443 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0685e14645ec410439978238ff199806282f7fb4;p=thirdparty%2FPython%2Fcpython.git Update current version of the "dailybuild" script. --- diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py index 70f708ff706c..ab4265eb9e11 100755 --- a/Doc/tools/dailybuild.py +++ b/Doc/tools/dailybuild.py @@ -33,9 +33,9 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org' BRANCHES = [ # checkout, target, isdev - (BUILDROOT + '/python33', WWWROOT + '/py3k', False), - (BUILDROOT + '/python34', WWWROOT + '/dev', True), - (BUILDROOT + '/python27', WWWROOT, False), + (BUILDROOT + '/python33', WWWROOT + '/3.3', False), + (BUILDROOT + '/python34', WWWROOT + '/3.4', True), + (BUILDROOT + '/python27', WWWROOT + '/2.7', False), ]