micropython

Change of lib/collections.py

686:c7a45163b872
lib/collections.py syspython-as-target
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lib/collections.py	Wed Oct 09 01:25:53 2013 +0200
     1.3 @@ -0,0 +1,36 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +"""
     1.7 +Collections.
     1.8 +
     1.9 +Copyright (C) 2013 Paul Boddie <paul@boddie.org.uk>
    1.10 +
    1.11 +This program is free software; you can redistribute it and/or modify it under
    1.12 +the terms of the GNU General Public License as published by the Free Software
    1.13 +Foundation; either version 3 of the License, or (at your option) any later
    1.14 +version.
    1.15 +
    1.16 +This program is distributed in the hope that it will be useful, but WITHOUT
    1.17 +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    1.18 +FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
    1.19 +details.
    1.20 +
    1.21 +You should have received a copy of the GNU General Public License along with
    1.22 +this program.  If not, see <http://www.gnu.org/licenses/>.
    1.23 +"""
    1.24 +
    1.25 +class defaultdict(dict):
    1.26 +    pass
    1.27 +
    1.28 +class deque(object):
    1.29 +    def append(x): pass
    1.30 +    def appendleft(x): pass
    1.31 +    def clear(): pass
    1.32 +    def extend(iterable): pass
    1.33 +    def extendleft(iterable): pass
    1.34 +    def pop(): pass
    1.35 +    def popleft(): pass
    1.36 +    def remove(value): pass
    1.37 +    def rotate(n): pass
    1.38 +
    1.39 +# vim: tabstop=4 expandtab shiftwidth=4