Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #63874

Re: Code review?

Path csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.039
X-Spam-Evidence '*H*': 0.92; '*S*': 0.00; 'cc:addr:python-list': 0.11; 'martin': 0.11; 'python': 0.11; 'jan': 0.12; '"python"': 0.16; '"python",': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'inversion': 0.16; 'mainstream': 0.16; 'wrote:': 0.18; '(in': 0.22; 'cc:addr:python.org': 0.22; 'install': 0.23; 'subject:Code': 0.24; "haven't": 0.24; 'question': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'installed': 0.27; 'message-id:@mail.gmail.com': 0.30; 'gives': 0.31; 'that.': 0.31; 'too.': 0.31; '3.x': 0.31; 'linux': 0.33; 'guess': 0.33; "i'd": 0.34; 'received:google.com': 0.35; 'version': 0.36; '14,': 0.36; 'ubuntu': 0.36; 'subject:?': 0.36; 'depends': 0.38; 'pm,': 0.38; 'anything': 0.39; 'does': 0.39; 'most': 0.60; 'matter': 0.61; 'simply': 0.61; "you'll": 0.62; 'name': 0.63; 'grab': 0.64; 'choices,': 0.84; 'ships': 0.84; 'to:none': 0.92
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=u7kC6JXUkDttFuiCM+NgzKqx8D95cGpt0Nh/9PmL1MA=; b=floZNsism5GNwjzBPkzs0rGuLdwB1GSBTAXeC0pIMY0lCtvN/qRFgd/EBxYi2NzOGB I37LSIY2BEzCwVeGKpASvxWOiThLJ2wubLJbIRVYX8vnZM+X+tX9G8RG6rnudef6/m/b W6jsNPEs1Y5we23FsX4n2Jko+R2f1ZGKkZ64VfKGbX2wCDmlguWL7tIXQg2rsgIzajKO E6+ES0ifi7/QNXYmugmCApKOnogZ4N6tcaon55gJLV0Z76zn7GiQenSipjg83b42ecWb vqcc3wMYwvXW9uMJWM325L2YrIO530sCYZzXJWjan+k1siQu8L6jSn/WS5NBuxAWVQwg R64g==
MIME-Version 1.0
X-Received by 10.68.201.10 with SMTP id jw10mr35132522pbc.25.1389685009622; Mon, 13 Jan 2014 23:36:49 -0800 (PST)
In-Reply-To <bjk6spFg0vbU2@mid.individual.net>
References <13BCC15D-B1E0-4AB2-9641-673D5B1B6FDD@gmail.com> <mailman.5433.1389656059.18130.python-list@python.org> <bjk6spFg0vbU2@mid.individual.net>
Date Tue, 14 Jan 2014 18:36:49 +1100
Subject Re: Code review?
From Chris Angelico <rosuav@gmail.com>
Cc "python-list@python.org" <python-list@python.org>
Content-Type text/plain; charset=UTF-8
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.5436.1389685424.18130.python-list@python.org> (permalink)
Lines 19
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1389685424 news.xs4all.nl 2949 [2001:888:2000:d::a6]:38118
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:63874

Show key headers only | View raw


On Tue, Jan 14, 2014 at 6:22 PM, Bob Martin <bob.martin@excite.com> wrote:
> Does any Linux distro ship with Python 3?  I haven't seen one.

On most Debian-based distros, you can simply 'apt-get install
python3', and you'll get some 3.x version (in Debian Squeeze, that's
3.1, Debian Wheezy packages 3.2; Ubuntu since Raring gives you 3.3).
Whether or not you actually have it - or python2 for that matter -
installed depends on your choices, anything that depends on it will
pull it in or you can grab it manually.

Arch Linux ships 3.3.3 under the name "python", and 2.7.6 under the
name "python2" - an inversion of the Debian practice. Other distros
are looking toward shifting, too.

I'd guess that all mainstream distributions carry both branches. It's
just a question of what people get when they ask for "Python" in the
most normal way to do that.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: Code review? Chris Angelico <rosuav@gmail.com> - 2014-01-14 03:40 +1100
  Re: Code review? Steven D'Aprano <steve@pearwood.info> - 2014-01-13 20:43 +0000
    Re: Code review? Chris Angelico <rosuav@gmail.com> - 2014-01-14 10:34 +1100
      Re: Code review? Bob Martin <bob.martin@excite.com> - 2014-01-14 07:22 +0000
        Re: Code review? Bayram Güçlü <byrmgcl@yandex.com.tr> - 2014-01-14 11:29 +0400
        Re: Code review? Chris Angelico <rosuav@gmail.com> - 2014-01-14 18:36 +1100

csiph-web