2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00
This commit is contained in:
Thomas Nagy 2017-04-01 10:12:17 +02:00
parent bffa757bae
commit f6a030e172
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA

View File

@ -710,7 +710,9 @@ class Node(object):
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`
"""
@ -730,7 +732,9 @@ class Node(object):
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`
"""