-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBase.py
More file actions
53 lines (32 loc) · 805 Bytes
/
Copy pathBase.py
File metadata and controls
53 lines (32 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# All referenced (missing descriptions)
from typing import Any, Iterable
def log(arg1: str) -> None:
"""
Log the given string to the console.\n
It will be logged under the format 'yyyy-mm-ddThh:mm:ss.milli: info: Python: '
:param arg1: The string to log.
"""
class Vector(Iterable):
def __iter__(self):
return self
def append(self, arg2: Any) -> None:
return
def extend(self, arg2: Any) -> None:
return
class FloatVector(Vector):
pass
class IntVector(Vector):
pass
class ObjectVector(Vector):
pass
class StringVector(Vector):
pass
class LimitationError:
pass
class Timer:
def restart(self) -> None:
return
def start(self) -> None:
return
def stop(self) -> None:
return