-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
executable file
·57 lines (37 loc) · 803 Bytes
/
__init__.py
File metadata and controls
executable file
·57 lines (37 loc) · 803 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
54
55
56
57
from domxpath import Compile, Environment
class XPath :
def __init__(self, expression, reference) :
self.xpath = Compile(expression)
def setParameter(self, name, value) :
pass
def setNameSpace(self, prefix, name_space) :
pass
def execute(self, dom) :
pass
class Result :
def __init__(self) :
pass
def isaString(self) :
return pass
def isaNumber(self) :
return pass
def isaBoolean(self) :
return pass
def isaNodeset(self) :
pass
def __str__(self) :
pass
def __int__(self) :
pass
def __long__(self) :
pass
def __float__(self) :
pass
def __coerce__(self, other) :
pass
def __len__(self) :
pass
def __getitem__(self, key) :
pass
def __iter__(self) :
pass