CircuitPython/os.py

changeset 7
e336d6afc5a6
equal deleted inserted replaced
6:81a2208f13e4 7:e336d6afc5a6
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 'os' module.
8 """
9
10 def uname():
11 pass
12
13 def chdir(path):
14 pass
15
16 def getcwd():
17 pass
18
19 def listdir(dir="."):
20 pass
21
22 def mkdir(path):
23 pass
24
25 def remove(path):
26 pass
27
28 def rmdir(path):
29 pass
30
31 def rename(old_path, new_path):
32 pass
33
34 def stat(path):
35 pass
36
37 def statvfs(path):
38 pass
39
40 def sync():
41 pass
42
43 def urandom(size):
44 pass
45
46 sep = "/"
47

eric ide

mercurial