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.

classification
Title: int.bit_at(n) - Accessing a single bit in O(1)
Type: enhancement Stage: resolved
Components: Versions: Python 3.5
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: anon, gbtami, hct, josh.r, mark.dickinson, martin.panter, meador.inge, niklasf, nitishch, pitrou, pmpp, rhettinger, serhiy.storchaka, steven.daprano, tim.peters
Priority: normal Keywords:

Created on 2013-12-07 00:27 by anon, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (55)
msg205421 - (view) Author: anon (anon) Date: 2013-12-07 00:27
For many numeric algorithms it's useful to be able to read individual bits at a location in an integer. Currently there is no efficient way to do this. The following function is the closest to this:

def bit_at(i, n): return (i>>n)&1

However in computing the intermediate result i>>n we must spend O(b-n) time at least (where b is n.bit_length()). It should be possible to read bits in O(1) time. Adding int.bit_at(n) would complement int.bit_length().

I would suggest making the semantics of i.bit_at(n) the same as (i>>n)&1. Although the exact meaning when i is negative should be considered.

Real world uses of bit_at include binary exponentiation and bit counting algorithms.
msg205425 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-07 00:44
I'd rather see `i.bits_at(pos, width=1)`, to act like

(i >> pos) & ((1 << width) - 1)

That is, extract the `width` consecutive bits at positions 2**pos through 2**(pos + width - 1) inclusive.

Because Python ints maintain the illusion of having an infinite number of sign bits, I don't think negative `pos` (or `width`) can be assigned a sensible meaning.  Python ints only have "one end".

And, yup, I've often wanted this too!
msg205427 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2013-12-07 01:09
> I've often wanted this too!

My want has been for a bitarray (parallel to the existing bytearray type).
msg205429 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-07 01:16
Raymond, I expect they have overlapping - but not identical - audiences.  There's seem to be a quite capable bitarray extension here:

https://pypi.python.org/pypi/bitarray/
msg205430 - (view) Author: HCT (hct) Date: 2013-12-07 01:32
or just allow slicing of int. otherwise function call overhead may defeat the speed up of such function.
msg205441 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-12-07 07:52
> My want has been for a bitarray (parallel to the existing bytearray type).

Or bitview (parallel to the existing memoryview type). It should work as with int's and bytes object's (immutable), so with bytearray (mutable).
msg205449 - (view) Author: anon (anon) Date: 2013-12-07 11:19
I like the i.bits_at(pos, width=1) suggestion. Unless slicing is chosen instead this seems the most future-proof idea.

I think slicing semantically "seems wrong" but it might be more elegant. It might also make catching errors harder (in the case where an int is sent to a function that does slicing and now won't fail with a TypeError).
msg205453 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2013-12-07 13:08
> I'd rather see `i.bits_at(pos, width=1)`

Me too.  Extracting sign, exponent and significand fields from the binary representation of a float is at least one thing I'd use this for.
msg205460 - (view) Author: anon (anon) Date: 2013-12-07 15:16
I didn't really consider floats. bit_length() is only provided to ints for example.

I think a better solution to pick apart floats would be a function similar to math.frexp, if it isn't already sufficient. float.bits_at(pos, width) seems a worse solution because the position of each bit would be arbitrary. But I have no major objection against it being extended to floats.
msg205473 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2013-12-07 17:26
Sorry, I wasn't clear.  I'm not interested in applying this to floats themselves; I'm interested in applying it to the bit pattern of a float when that bit pattern is treated as an integer.

> But I have no major objection against it being extended to floats.

I do!
msg205604 - (view) Author: anon (anon) Date: 2013-12-08 20:47
Then I think we're in agreement with regards to bits_at. :) What should happen next?
msg205613 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-12-08 22:15
> Extracting sign, exponent and significand fields from the binary
> representation of a float is at least one thing I'd use this for.

You don't need special function for bit operations. Float values are short (32 
or 64 bits) and any bit operations are O(1). Special function for bit 
extracting (or modifying) is needed when you process many hundreds or 
thousands of bits. In any case >> and & for 64-bit values are faster than 
method call.
msg205643 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-09 03:29
@serhiy, Mark certainly knows the proposed addition isn't _needed_ to pick apart 64-bit integers.  It's an issue there of clarity, not O() behavior.  For example, `i.bits_at(0, 52)` to get at a double's mantissa requires no thought at all to write or to read later; bit-level gibberish like

i & ~((~0) << 52)

or

i & ((1 << 52) - 1)

or ... is painful to write and to read.
msg205644 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-09 03:35
[@anon]
> What should happen next?

1. Write docs.
2. Write a test suite and test a Python implementation.
3. Write C code, and reuse the test suite to test that.
4. Attach a patch for all of that to this issue (although a
   Python implementation is no longer interesting at this point).
5. After that's all ready, seek consensus on Python-Dev.

The good news:  this is too minor to require a PEP ;-)
msg205658 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-12-09 09:59
> For example, `i.bits_at(0, 52)` to get at a double's mantissa requires no thought at all to write or to read later; bit-level gibberish like

I agree that special function or method looks more clear. But I suppose that in many cases the performance does matter. And function call has larger overhead in current Python.
msg205711 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-12-09 16:49
Should the signature be int.bits_at(start_bit, width) or int.bits_at(start_bit, end_bit+1) ? The latter would look more lire range() and slicing.
msg205712 - (view) Author: anon (anon) Date: 2013-12-09 17:01
Antoine, I don't suggest that since you commonly want a fixed number of bits.
msg205713 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-09 17:06
@pitrou, I think usability is a lot more valuable than cross-feature "formal consistency" here.  I've been extracting bit fields for decades, and always think of them in terms of "least-significant bit and number of bits".  Perhaps the underlying difference is that nobody ever thinks of bit positions as being _between_ bits - instead we always think of "bit i" as being the bit with binary value 2**i.  It's more of a math concept than an indexing concept.

For a bit _array_ I'd agree slicing semantics would make more sense.  But Python ints have infinite width, and "index 0" is at the rightmost position (not the leftmost position - there is no leftmost position).

I'd also like to avoid the nuisance of having to implement all the goofy slicing possibilities, like non-unit strides and negative strides.  Not that they're "goofy" in general - they're goofy in the context of extracting bits from an integer.  Again a bit array is a different kind of beast.
msg205714 - (view) Author: anon (anon) Date: 2013-12-09 17:07
Here is my very rough attempt at bits_at. It doesn't handle negative numbers and I am not sure it's safe. This was my first time using Python internals.

Objects/longobject.c:



static PyObject *
long_bits_at(PyLongObject *v, PyObject *args)
{
    PyLongObject *z = NULL;
    
    if(Py_SIZE(v) < 0)
    {
        PyLongObject *a1, *a2;
        Py_RETURN_NOTIMPLEMENTED;
        a1 = (PyLongObject *)long_invert(v);
        //Handle the case where a1 == NULL
        a2 = (PyLongObject *)long_bits_at(a1, args);
        //Handle the case where a2 == NULL
        Py_DECREF(a1);
        Py_DECREF(a2);
        //return a2 ^ ((1 << width) - 1)
    }
    else
    {
        PyObject *at_ = NULL;
        PyObject *width_ = NULL;
        ssize_t at, width, i, j, bitsleft, step;
        ssize_t wordshift, size, newsize, loshift, hishift;
        digit mask;
        
        if (!PyArg_UnpackTuple(args, "bits_at", 1, 2, &at_, &width_))
            return NULL;
        
        at = PyLong_AsSsize_t((PyObject *)at_);
        if (at == -1L && PyErr_Occurred())
            return NULL;
        if (at < 0) {
            PyErr_SetString(PyExc_ValueError, "negative index");
            return NULL;
        }
        
        if (width_ == NULL)
            width = 1;
        else {
            width = PyLong_AsSsize_t((PyObject *)width_);
            if (width == -1L && PyErr_Occurred())
                return NULL;
            if (width < 0) {
                PyErr_SetString(PyExc_ValueError, "negative bit count");
                return NULL;
            }
        }
        
        wordshift = at / PyLong_SHIFT;
        size = ABS(Py_SIZE(v));
        newsize = (width-1) / PyLong_SHIFT + 1;
        if (newsize > size-wordshift)
            newsize = size-wordshift;
        if (newsize <= 0)
            return PyLong_FromLong(0L);
        
        loshift = at % PyLong_SHIFT;
        hishift = PyLong_SHIFT - loshift;
        bitsleft = width;
        z = _PyLong_New(newsize);
        if (z == NULL)
            return NULL;
        
        for (i = 0, j = wordshift; i < newsize; i++, j++) {
            step = bitsleft<hishift ? bitsleft : hishift;
            mask = ((digit)1 << step) - 1;
            z->ob_digit[i] = (v->ob_digit[j] >> loshift) & mask;
            bitsleft -= step;
            
            if (j+1 < size) {
                step = bitsleft<loshift ? bitsleft : loshift;
                mask = ((digit)1 << step) - 1;
                z->ob_digit[i] |= ((v->ob_digit[j+1] & mask) << hishift);
                bitsleft -= step;
            }
        }
        z = long_normalize(z);
    }
    
    return (PyObject *)z;
}

PyDoc_STRVAR(long_bits_at_doc,
"int.bits_at(pos, width=1) -> int\n\
\n\
Equivalent to (int >> pos) & ((1 << width) - 1).");
msg205715 - (view) Author: anon (anon) Date: 2013-12-09 17:09
Here are some inadequate tests to add to Lib/test/test_long.py



    def test_bits_at(self):
        def bits_at(n, pos, width=1):
            return (n>>pos) & ((1 << width) - 1)
        for n in [123, 7777777, (1<<35)|(1<<30)|(1<<25)]:
            for i in range(50):
                for j in range(20):
                    self.assertEqual(n.bits_at(i, j), bits_at(n, i, j))
msg205716 - (view) Author: anon (anon) Date: 2013-12-09 17:12
Both segments of code are public domain. It would be great if someone could review them, improve them and produce a proper patch. I didn't handle the negative case, which I hope someone else can add.
msg205717 - (view) Author: anon (anon) Date: 2013-12-09 17:25
Some of the code may be under Python's license though. So I should clarify that only MY parts of the two samples of code are public domain.
msg205742 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-09 22:04
@anon, sorry, but we can't accept any code from you unless you have a real name and fill out a contributor agreement:

   http://www.python.org/psf/contrib/

This is legal crud, and I'm not a lawyer.  But, in particular, lawyers have told me that - in the USA - an individual cannot meaningfully put anything in "the public domain".  That's what I used to do - until a lawyer strongly advised me to stop that and use an actual license.

In any case, it's most likely that Python developers won't even look at your code in the absence of a contributor agreement.  If we did, the slight chance of Bad Consequences (e.g., someone we only knew as "anon" sues us for stealing their ideas) outweighs the slight benefit we might get from stealing your ideas ;-)
msg205743 - (view) Author: HCT (hct) Date: 2013-12-09 22:27
> I think slicing semantically "seems wrong" but it might be more elegant. It might also make catching errors harder (in the case where an int is sent to a function that does slicing and now won't fail with a TypeError).

not sure what's semantically "seems wrong" with it. not sure why TypeError or any other error catching should come into play for this.

calling a function is way more expensive than doing bit shift and/or AND operation. as a function, you've only hide your code into Python binaries at the expense of performance
msg205745 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-09 22:40
@HCT, see http://bugs.python.org/issue19915#msg205713 for what's "semantically wrong".  Ints are not arrays - slicing is unnatural.

The point about error checking is that if this were supported via slicing notation, then the _helpful_ exceptions of the form, e.g.,

    TypeError: 'int' object has no attribute '__getitem__'

would no longer occur for code like

    myarray[1:12]

where `myarray` is mistakenly bound to an integer.  We always lose something when assigning a meaning to an operation that formerly raised an exception.

About:

> calling a function is way more expensive than doing
> bit shift and/or AND operation

read the very first message in this issue.  There is no upper bound on how expensive bit shifts and logical operations can be on Python integers:  they can take time proportional to the number of bits.  But a function to extract a bit can be written internally to require small constant time, independent of the number of bits in the integer.  At least that's true for CPython ints >= 0; it may well take longer for negative CPython ints in some cases.

If speed on small ints is your primary concern, by all means continue to fiddle the bits by hand ;-)
msg205760 - (view) Author: anon (anon) Date: 2013-12-10 00:39
Tim, I'm sorry to hear you can't accept my patch. I am afraid I want to stay anonymous.

You have my word that I wrote the two code segments above (based on code already in CPython) and that I put them in the public domain. But I appreciate that the word of `anon` may be worth nothing to you. For what it is worth I could have used a fake name anyway.

If you can't accept them, may I request someone else implement the proposal? This may be for the best anyway since I am unfamiliar with CPython internals.
msg205762 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2013-12-10 00:55
@anon, not to worry:  someone else will write the code.  Maybe even me ;-)

BTW, "public domain" is not a license.  It's the absence of a license.  Our lawyers would not accept that even if you had a real name ;-)
msg205936 - (view) Author: anon (anon) Date: 2013-12-11 22:42
Thank you! I will try to help in ways that I can such as testing.
msg212882 - (view) Author: HCT (hct) Date: 2014-03-07 15:19
then I guess it's either a new function to int or a new type of int for this type of operations. similar to bytearray/ctypes and memoryview
msg215048 - (view) Author: anon (anon) Date: 2014-03-28 14:51
From what I can tell it's fairly easy to just add bits_at to int.

Indeed something like a mutable int type might be nice but that's really outside the scope of this. And adding bits_at to int would still be desirable anyway.
msg221395 - (view) Author: anon (anon) Date: 2014-06-24 04:11
I think the case where i is negative can be handled by

bits_at(i, pos, width) = bits_at(~i, pos, width) ^ ((1 << width) - 1)
msg228104 - (view) Author: anon (anon) Date: 2014-10-01 17:44
I noticed feature freeze for 3.5 is in May 2015 which is actually only 7-8 months. It'd be really awesome if this feature could make it. Is there anyone who can get this into 3.5?
msg228119 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-10-01 20:59
@anon: if there is a patch, any committer here can get it into 3.5. You'll recognize them as they have a nice Python logo next to their usernames ;-) If you want to try your hand at a patch, see https://docs.python.org/devguide/

By the way, I think it would be extra cool to implement this as a ".bits" pseudo-sequence, e.g.

>>> x = 255
>>> x.bits[0]
1
>>> x.bits[1:3]
7

However, it might not be so easy to do it in C...
msg228167 - (view) Author: anon (anon) Date: 2014-10-02 06:55
Above I included a first attempt however I don't think my code is good and I couldn't figure out the case for negative integers. There's some discussion above about its inclusion.

I like your x.bits suggestion actually, assuming x.bits returns an IntBitsView object without copying x in any way. That would suggest that we could do len(x.bits) and probably depreciate x.bit_length(). Any consensus on this?
msg228172 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-10-02 07:33
I don't like the idea of the array-view int.bits[a:b]: it's harder to implement and the proposed behaviour is different than a list. Example:

>>> x=list("abcdef")
>>> x[2]
'c'
>>> x[2:4]
['c', 'd']

x[2:4] returns a subset of the list, so a new list. It doesn't return "cd". I would expect int.bits[a:b] to return a list of integers in range 0..1.

I prefer int.bits(bit, nbits=1), because it's more obvious that it returns an integer (and not a list) for nbits > 1.
msg228174 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-10-02 07:35
I don't know where "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).
msg228177 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-10-02 07:42
> I don't like the idea of the array-view int.bits[a:b]: it's harder to 
> implement and the proposed behaviour is different than a list.

Sequences are not lists.
msg228179 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-10-02 07:55
> Sequences are not lists.

Are there other object types for which obj[a:b] does not return a new sequence?
msg228180 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-10-02 08:00
> Are there other object types for which obj[a:b] does not return a new sequence?

That's a good question :-) I can't think of any.
msg228197 - (view) Author: anon (anon) Date: 2014-10-02 10:18
Pros for x.bits being a view:
- seems slightly cleaner (in my opinion)
- can potentially abstract slicing bits without copying the underlying int (e.g. x.bits[2:][4:])

Pros for x.bits being a function:
- Victor's point
- no need to depreciate x.bit_length
- no need to create a View object and probably faster?
- easier to implement
msg228202 - (view) Author: anon (anon) Date: 2014-10-02 10:26
Giving it more thought: to get the int we'd need something like int(x.bits[2:][4:]) which seems quite annoying for the general case of int(x.bits[0:52]). So actually I'm not sure that views would add any more abstraction for their extra complexity without becoming a bit unwieldy.
msg228204 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-02 10:31
While everybody is throwing ideas around: what about the opposite?

If extracting bit ranges from bitfields is common enough to warrant this addition, updating bitfields with a bit range is probably just as common.

This'd need something like

i.with_bits(value, pos, width=1)

No preference if it should raise an exception if value is wider than "width".
msg228211 - (view) Author: anon (anon) Date: 2014-10-02 11:01
@Georg: I don't think it would be as common but do agree it'd be useful.

I think it can be implemented "efficiently" in pure Python currently.

def with_bits(i, value, pos, width=1):
  width = min(width, value.bit_length())
  mask = ((1 << width) - 1)
  v = value & mask
  i = i & ~(mask << pos)
  return i | (v << pos)
msg228212 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-02 11:08
This is why I proposed it (and also because I had to write that quite a few times already).  Efficient maybe, but very hard to get right on the first try :)
msg228220 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2014-10-02 11:48
> - no need to depreciate x.bit_length

No matter how this issue progresses, deprecating `int.bit_length` should be out of the question.  Much better to have (somewhat) duplicated functionality than to gratuitously break code that's already using `int.bit_length`.
msg228223 - (view) Author: anon (anon) Date: 2014-10-02 12:09
All I had meant by depreciating was changing the x.bit_length documentation to point towards len(x.bits).
msg228229 - (view) Author: HCT (hct) Date: 2014-10-02 15:19
maybe someone should start a PEP with all of the thoughts organized?
msg228231 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-10-02 15:36
Yes, it's a good idea to start a PEP to modify most important builtin
types like int and str.
msg228232 - (view) Author: anon (anon) Date: 2014-10-02 15:55
That's something that a Python comitter would have to do isn't it?
msg228233 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-10-02 15:59
> That's something that a Python comitter would have to do isn't it?

Python is open. Anyone can propose an enhancement (a PEP).
msg228309 - (view) Author: anon (anon) Date: 2014-10-03 07:57
Since I'm not familiar with the process I'd request someone creates the PEP. But if really necessary I can try.

I just really want to see this in Python 3.5 - it's really essential to a number of scientific methods. I know several open source projects that would benefit from it.
msg243275 - (view) Author: anon (anon) Date: 2015-05-15 16:33
I'm struggling to get time for this. I hope someone else can take responsibility. Sorry :-(
msg254346 - (view) Author: anon (anon) Date: 2015-11-08 16:41
Any update on this?
msg370577 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-06-01 19:06
> Any update on this?

Since nobody proposed a PEP, no, there is no progress on this issue.

I suggest to close it because of the lack of interest to move on on this issue.
msg377199 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2020-09-20 00:58
If someone does develop an interest in this, feel free to re-open. 
 
Personally, I'm sure that I would use int.bit_at() but only once every five years ;-)   Also, it would be only half a solution unless accompanied by int.replace_bit_at().
History
Date User Action Args
2022-04-11 14:57:55adminsetgithub: 64114
2020-09-20 13:03:20vstinnersetnosy: - vstinner
2020-09-20 01:14:07pmppsetnosy: + pmpp
2020-09-20 00:58:35rhettingersetstatus: open -> closed
resolution: rejected
messages: + msg377199

stage: needs patch -> resolved
2020-09-19 19:03:37georg.brandlsetnosy: - georg.brandl
2020-06-01 19:06:41vstinnersetmessages: + msg370577
2020-05-30 14:45:20niklasfsetnosy: + niklasf
2018-01-30 19:24:35nitishchsetnosy: + nitishch
2018-01-30 17:20:51gbtamisetnosy: + gbtami
2015-11-08 16:41:49anonsetmessages: + msg254346
2015-06-07 15:34:15steven.dapranosetnosy: + steven.daprano
2015-05-15 16:33:11anonsetmessages: + msg243275
2014-10-03 07:57:52anonsetmessages: + msg228309
2014-10-02 15:59:07vstinnersetmessages: + msg228233
2014-10-02 15:55:58anonsetmessages: + msg228232
2014-10-02 15:36:59vstinnersetmessages: + msg228231
2014-10-02 15:19:48hctsetmessages: + msg228229
2014-10-02 12:09:33anonsetmessages: + msg228223
2014-10-02 11:48:48mark.dickinsonsetmessages: + msg228220
2014-10-02 11:08:23georg.brandlsetmessages: + msg228212
2014-10-02 11:01:05anonsetmessages: + msg228211
2014-10-02 10:31:39georg.brandlsetnosy: + georg.brandl
messages: + msg228204
2014-10-02 10:26:26anonsetmessages: + msg228202
2014-10-02 10:18:07anonsetmessages: + msg228197
2014-10-02 08:00:08pitrousetmessages: + msg228180
2014-10-02 07:55:23vstinnersetmessages: + msg228179
2014-10-02 07:42:26pitrousetmessages: + msg228177
2014-10-02 07:35:52vstinnersetmessages: + msg228174
2014-10-02 07:35:34vstinnersetmessages: - msg228173
2014-10-02 07:35:22vstinnersetmessages: + msg228173
2014-10-02 07:33:26vstinnersetmessages: + msg228172
2014-10-02 06:55:11anonsetmessages: + msg228167
2014-10-02 02:04:44martin.pantersetnosy: + martin.panter
2014-10-01 20:59:59pitrousetstatus: pending -> open

messages: + msg228119
2014-10-01 17:44:18anonsetstatus: open -> pending

messages: + msg228104
2014-06-24 04:11:20anonsetmessages: + msg221395
2014-03-28 14:51:33anonsetmessages: + msg215048
2014-03-07 15:19:33hctsetmessages: + msg212882
2014-03-06 22:39:02josh.rsetnosy: + josh.r
2013-12-11 22:42:05anonsetmessages: + msg205936
2013-12-10 00:55:49tim.peterssetmessages: + msg205762
2013-12-10 00:39:16anonsetmessages: + msg205760
2013-12-09 22:40:19tim.peterssetmessages: + msg205745
2013-12-09 22:27:55hctsetmessages: + msg205743
2013-12-09 22:04:38tim.peterssetmessages: + msg205742
2013-12-09 17:25:48anonsetmessages: + msg205717
2013-12-09 17:12:56anonsetmessages: + msg205716
2013-12-09 17:09:39anonsetmessages: + msg205715
2013-12-09 17:07:55anonsetmessages: + msg205714
2013-12-09 17:06:00tim.peterssetmessages: + msg205713
2013-12-09 17:01:45anonsetmessages: + msg205712
2013-12-09 16:49:04pitrousetnosy: + pitrou
messages: + msg205711
2013-12-09 15:34:11meador.ingesetnosy: + meador.inge
2013-12-09 09:59:36serhiy.storchakasetmessages: + msg205658
2013-12-09 03:35:30tim.peterssetmessages: + msg205644
stage: needs patch
2013-12-09 03:29:44tim.peterssetmessages: + msg205643
2013-12-08 22:15:46serhiy.storchakasetmessages: + msg205613
2013-12-08 20:47:02anonsetmessages: + msg205604
2013-12-07 17:26:49mark.dickinsonsetmessages: + msg205473
2013-12-07 15:16:28anonsetmessages: + msg205460
2013-12-07 13:58:45vstinnersetnosy: + vstinner
2013-12-07 13:08:00mark.dickinsonsetmessages: + msg205453
2013-12-07 11:19:29anonsetmessages: + msg205449
2013-12-07 07:52:46serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg205441
2013-12-07 01:32:58hctsetnosy: + hct
messages: + msg205430
2013-12-07 01:16:15tim.peterssetmessages: + msg205429
2013-12-07 01:09:10rhettingersetnosy: + rhettinger
messages: + msg205427
2013-12-07 00:44:47tim.peterssetmessages: + msg205425
2013-12-07 00:28:01pitrousetnosy: + tim.peters, mark.dickinson
2013-12-07 00:27:06anoncreate