8 | | And then >=2.6 would get us stdlib {{{json}}}, and could replace our LRU cache (unless we already got rid of it?) with {{{collections.dequeue(maxlen=)}}}. It might even be possible to get a codebase that works with py2.6 and py3.3 simultaneously, since 2.6 adds b"", print-as-function (guarded by {{{__future__}}}), and "{{{except FooError as e:}}}" (although, of course, we kind of have to wait for our dependencies to move to py3 first). |
| 8 | And then >=2.6 would get us stdlib {{{json}}}, and could replace our LRU cache (unless we already got rid of it?) with {{{collections.deque(maxlen=)}}}. It might even be possible to get a codebase that works with py2.6 and py3.3 simultaneously, since 2.6 adds b"", print-as-function (guarded by {{{__future__}}}), and "{{{except FooError as e:}}}" (although, of course, we kind of have to wait for our dependencies to move to py3 first). |