Changes between Initial Version and Version 1 of Ticket #1658, comment 16


Ignore:
Timestamp:
2015-05-02T18:44:40Z (10 years ago)
Author:
daira
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1658, comment 16

    initial v1  
    66* switch to PEP328 relative imports
    77
    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).
     8And 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).