Merge pull request #1147 from jayvdb/remove-extrainit
Remove commented out extrainit
This commit is contained in:
commit
8f31a1a64b
|
@ -240,17 +240,11 @@ class Node(object):
|
||||||
# used for storing artificial fixturedefs for direct parametrization
|
# used for storing artificial fixturedefs for direct parametrization
|
||||||
self._name2pseudofixturedef = {}
|
self._name2pseudofixturedef = {}
|
||||||
|
|
||||||
#self.extrainit()
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def ihook(self):
|
def ihook(self):
|
||||||
""" fspath sensitive hook proxy used to call pytest hooks"""
|
""" fspath sensitive hook proxy used to call pytest hooks"""
|
||||||
return self.session.gethookproxy(self.fspath)
|
return self.session.gethookproxy(self.fspath)
|
||||||
|
|
||||||
#def extrainit(self):
|
|
||||||
# """"extra initialization after Node is initialized. Implemented
|
|
||||||
# by some subclasses. """
|
|
||||||
|
|
||||||
Module = compatproperty("Module")
|
Module = compatproperty("Module")
|
||||||
Class = compatproperty("Class")
|
Class = compatproperty("Class")
|
||||||
Instance = compatproperty("Instance")
|
Instance = compatproperty("Instance")
|
||||||
|
|
Loading…
Reference in New Issue