micropython

Change of lib/builtins.py

260:25c1660165db
lib/builtins.py
     1.1 --- a/lib/builtins.py	Thu Sep 24 21:29:29 2009 +0200
     1.2 +++ b/lib/builtins.py	Fri Sep 25 00:35:17 2009 +0200
     1.3 @@ -106,6 +106,8 @@
     1.4      def __init__(self, number_or_string=None): pass
     1.5      def __iadd__(self, other): pass
     1.6      def __isub__(self, other): pass
     1.7 +    def __iand__(self, other): pass
     1.8 +    def __ior__(self, other): pass
     1.9      def __add__(self, other): pass
    1.10      def __radd__(self, other): pass
    1.11      def __sub__(self, other): pass
    1.12 @@ -136,6 +138,10 @@
    1.13      def __pos__(self): pass
    1.14      def __str__(self): pass
    1.15      def __bool__(self): pass
    1.16 +    def __lshift__(self): pass
    1.17 +    def __rlshift__(self): pass
    1.18 +    def __rshift__(self): pass
    1.19 +    def __rrshift__(self): pass
    1.20  
    1.21  class list(object):
    1.22      def __init__(self, args=()): pass