Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nltk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
nltk
Commits
e1bb3d96
Commit
e1bb3d96
authored
Sep 07, 2012
by
Peter Ljunglöf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes issue #229. Not the nicest solution, but i think it works now.
parent
c09ae1a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
nltk/tree.py
+33
-0
No files found.
nltk/tree.py
View file @
e1bb3d96
...
...
@@ -813,6 +813,21 @@ class AbstractParentedTree(Tree):
- ``_delparent()`` is called whenever a child is removed.
"""
def
__init__
(
self
,
node_or_str
,
children
=
None
):
super
(
AbstractParentedTree
,
self
)
.
__init__
(
node_or_str
,
children
)
# If children is None, the tree is parsed from node_or_str, and
# all parents will be set during parsing.
if
children
is
not
None
:
# Otherwise we have to set the parent of the children.
# Iterate over self, and *not* children, because children
# might be an iterator.
for
i
,
child
in
enumerate
(
self
):
if
isinstance
(
child
,
Tree
):
self
.
_setparent
(
child
,
i
,
dry_run
=
True
)
for
i
,
child
in
enumerate
(
self
):
if
isinstance
(
child
,
Tree
):
self
.
_setparent
(
child
,
i
)
#////////////////////////////////////////////////////////////
# Parent management
#////////////////////////////////////////////////////////////
...
...
@@ -1023,6 +1038,15 @@ class ParentedTree(AbstractParentedTree):
self
.
_parent
=
None
"""The parent of this Tree, or None if it has no parent."""
super
(
ParentedTree
,
self
)
.
__init__
(
node_or_str
,
children
)
if
children
is
None
:
# If children is None, the tree is parsed from node_or_str.
# After parsing, the parent of the immediate children
# will point to an intermediate tree, not self.
# We fix this by brute force:
for
i
,
child
in
enumerate
(
self
):
if
isinstance
(
child
,
Tree
):
child
.
_parent
=
None
self
.
_setparent
(
child
,
i
)
def
_frozen_class
(
self
):
return
ImmutableParentedTree
...
...
@@ -1133,6 +1157,15 @@ class MultiParentedTree(AbstractParentedTree):
contain duplicates, even if a parent contains this tree
multiple times."""
super
(
MultiParentedTree
,
self
)
.
__init__
(
node_or_str
,
children
)
if
children
is
None
:
# If children is None, the tree is parsed from node_or_str.
# After parsing, the parent(s) of the immediate children
# will point to an intermediate tree, not self.
# We fix this by brute force:
for
i
,
child
in
enumerate
(
self
):
if
isinstance
(
child
,
Tree
):
child
.
_parents
=
[]
self
.
_setparent
(
child
,
i
)
def
_frozen_class
(
self
):
return
ImmutableMultiParentedTree
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment