MicroPython/array.py

changeset 0
b3daa2ebea2f
equal deleted inserted replaced
-1:000000000000 0:b3daa2ebea2f
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module containing stubs for API generation of the 'array' module.
8 """
9
10 class array():
11 def __init__(self, typecode, iterable=None):
12 pass
13
14 def append(self, value):
15 pass
16
17 def extend(self, iterable):
18 pass

eric ide

mercurial