This commit is contained in:
Thomas Nagy 2017-04-01 10:12:17 +02:00
parent a61bae1fca
commit 172cafa629
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 6 additions and 2 deletions

View File

@ -716,7 +716,9 @@ class Node(object):
def get_src(self): def get_src(self):
""" """
Returns the corresponding Node object in the source directory (or self if not possible) Returns the corresponding Node object in the source directory (or self if already
under the source directory). Use this method only if the purpose is to create
a Node object (this is common with folders but not with files, see ticket 1937)
:rtype: :py:class:`waflib.Node.Node` :rtype: :py:class:`waflib.Node.Node`
""" """
@ -736,7 +738,9 @@ class Node(object):
def get_bld(self): def get_bld(self):
""" """
Return the corresponding Node object in the build directory (or self if not possible) Return the corresponding Node object in the build directory (or self if already
under the build directory). Use this method only if the purpose is to create
a Node object (this is common with folders but not with files, see ticket 1937)
:rtype: :py:class:`waflib.Node.Node` :rtype: :py:class:`waflib.Node.Node`
""" """