This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients anon, hct, josh.r, mark.dickinson, martin.panter, meador.inge, pitrou, rhettinger, serhiy.storchaka, tim.peters, vstinner
Date 2014-10-02.07:35:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412235322.47.0.142976427505.issue19915@psf.upfronthosting.co.za>
In-reply-to
Content
I don't know what "at" of "bits_at()" comes from. It's rarely used in Python:

Lib/asynchat.py:def find_prefix_at_end(haystack, needle):
Lib/asyncio/test_utils.py:    def call_at(self, when, callback, *args):
Lib/asyncio/base_events.py:    def call_at(self, when, callback, *args):
Lib/asyncio/events.py:    def call_at(self, when, callback, *args):
Lib/ctypes/__init__.py:def string_at(ptr, size=-1):
Lib/ctypes/__init__.py:    def wstring_at(ptr, size=-1):
Lib/idlelib/EditorWindow.py:    def move_at_edge_if_selection(self, edge_index):
Lib/idlelib/EditorWindow.py:        def move_at_edge(event):

I prefer just "bits": int.bits(bit, nbits=1).
History
Date User Action Args
2014-10-02 07:35:34vstinnerunlinkissue19915 messages
2014-10-02 07:35:22vstinnersetrecipients: + vstinner, tim.peters, rhettinger, mark.dickinson, pitrou, meador.inge, martin.panter, serhiy.storchaka, hct, anon, josh.r
2014-10-02 07:35:22vstinnersetmessageid: <1412235322.47.0.142976427505.issue19915@psf.upfronthosting.co.za>
2014-10-02 07:35:22vstinnerlinkissue19915 messages
2014-10-02 07:35:21vstinnercreate