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


Groups > comp.lang.python > #94946

Re: how to determine for using c extension or not ?

Path csiph.com!optima2.xanadu-bbs.net!xanadu-bbs.net!news.mixmin.net!newsreader4.netcologne.de!news.netcologne.de!bcyclone05.am1.xlned.com!bcyclone05.am1.xlned.com!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <oscar.j.benjamin@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.016
X-Spam-Evidence '*H*': 0.97; '*S*': 0.00; 'cc:addr:python-list': 0.09; 'subject:using': 0.09; 'subject:not': 0.11; 'wrote:': 0.16; "shouldn't": 0.18; 'email addr:gmail.com&gt;': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'aug': 0.20; 'extension': 0.20; 'cc:no real name:2**0': 0.22; 'header:In-Reply- To:1': 0.24; 'mon,': 0.24; 'skip:" 20': 0.26; 'not.': 0.27; 'subject: ?': 0.27; 'message-id:@mail.gmail.com': 0.27; 'sentence': 0.29; 'skip:& 30': 0.30; 'received:google.com': 0.35; 'subject:: ': 0.37; 'really': 0.37; 'why': 0.39; 'determine': 0.61; 'matter.': 0.66; 'oscar': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-type; bh=KQHV+6z28oQLvHIO5VZSm5+lqAuRrotOkd/t1sfG6c4=; b=J9Trib+qlZj8iRsXfN7wx5BXJa7wkIkAaqji+M18acoe9aFpmMyN5p07SnQzX/Nvy3 MnzdE0BAZl5KOw2Vo8OJM5FkewCZ7DK0a/XUncqOJzovmi5FNaqmfRqfIneo9H4jqj9H W34A8wWQ2TvfyzPZssRC6817+AxSzV8idH+9cJmNIQP6t0lE7d7A+D0qG5mTMiTIHJi0 BjQnzkhDHGBc5rrHrlZbNhFZ3IWmZOkwjBGZcNI4Lzb5E9+HZ8SCBzRxTgyQF+NDS+7C zXMbbP/a1QzFQsza9czDvAa3Lqc9SPoGVl/qrVlqFL1JENQ5PjuPWhPcwpQrGfWZrh65 WMhQ==
X-Received by 10.152.245.43 with SMTP id xl11mr17196391lac.26.1438614312764; Mon, 03 Aug 2015 08:05:12 -0700 (PDT)
MIME-Version 1.0
References <mailman.1170.1438580869.3674.python-list@python.org> <55bf6e6f$0$1650$c3e8da3$5496439d@news.astraweb.com> <55BF7457.8030704@gmail.com> <CAPM-O+wFC3jQzs6hzoK+PrypbYsubTwToVg43zjk_qPhR4T6fQ@mail.gmail.com> <55BF8154.2030705@gmail.com>
In-Reply-To <55BF8154.2030705@gmail.com>
From Oscar Benjamin <oscar.j.benjamin@gmail.com>
Date Mon, 03 Aug 2015 15:05:03 +0000
Subject Re: how to determine for using c extension or not ?
To umedoblock <umedoblock@gmail.com>
Cc python-list@python.org
Content-Type multipart/alternative; boundary=001a1134633a14ca2e051c697fb8
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
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.1194.1438614314.3674.python-list@python.org> (permalink)
Lines 32
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1438614314 news.xs4all.nl 2863 [2001:888:2000:d::a6]:59234
X-Complaints-To abuse@xs4all.nl
X-Received-Bytes 4195
X-Received-Body-CRC 1110466773
Xref csiph.com comp.lang.python:94946

Show key headers only | View raw


[Multipart message — attachments visible in raw view] - view raw

On Mon, 3 Aug 2015 at 15:58 umedoblock <umedoblock@gmail.com> wrote:

>
> I use "bisect.bisect.__module__" sentence to determine for using c
> extension or not.
>
>
Why do you want to know if it uses the C extension? It shouldn't really
matter.

--
Oscar

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


Thread

how to determine for using c extension or not ? umedoblock <umedoblock@gmail.com> - 2015-08-03 14:47 +0900
  Re: how to determine for using c extension or not ? Steven D'Aprano <steve@pearwood.info> - 2015-08-03 23:36 +1000
    Re: how to determine for using c extension or not ? umedoblock <umedoblock@gmail.com> - 2015-08-03 23:01 +0900
    Re: how to determine for using c extension or not ? Joel Goldstick <joel.goldstick@gmail.com> - 2015-08-03 10:11 -0400
    Re: how to determine for using c extension or not ? umedoblock <umedoblock@gmail.com> - 2015-08-03 23:57 +0900
    Re: how to determine for using c extension or not ? Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2015-08-03 15:05 +0000
    Re: how to determine for using c extension or not ? umedoblock <umedoblock@gmail.com> - 2015-08-04 22:59 +0900

csiph-web