Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c899ee7

Browse files
authored
Merge pull request #33 from Hepheir/Hepheir/issue18
Implement type `DOMString` Close #18
2 parents e51b7dc + ea305c4 commit c899ee7

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

‎w3/dom.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Bring in subpackages.
55
from w3.python.core import DOMException
66
from w3.python.core import DOMImplementation
7+
from w3.python.core import DOMString
78
from w3.python.core import Node
89
from w3.python.core import NodeType
910
from w3.python.core import NodeList

‎w3/python/core/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
from w3.python.core.fundamental_interface import Node
66
from w3.python.core.fundamental_interface import NodeType
77
from w3.python.core.fundamental_interface import NodeList
8+
from w3.python.core.type import DOMString

‎w3/python/core/fundamental_interface/DOMImplementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
from w3.python.core.type import DOMString
3+
from w3.python.core.type.DOMString import DOMString
44

55

66
class DOMImplementation:

‎w3/python/core/fundamental_interface/Node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from w3.python.core.fundamental_interface.DOMException import DOMException
77
from w3.python.core.fundamental_interface.NodeList import NodeList
8-
from w3.python.core.type import DOMString
8+
from w3.python.core.type.DOMString import DOMString
99

1010

1111
class NodeType(enum.IntEnum):
File renamed without changes.

‎w3/python/core/type/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Module that contains classes of types and ect."""
2+
3+
from w3.python.core.type.DOMString import DOMString

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /