此代码是http://code.google.com/p/closure-library/source/browse/trunk/closure/bin/build/source.py
的副本Source类的__str __method引用 self._path
这是自己的特殊财产吗?
Cuz,我找不到在源类
定义此变量的地方import re
_BASE_REGEX_STRING = '^\s*goog\.%s\(\s*[\'"](.+)[\'"]\s*\)'
_PROVIDE_REGEX = re.compile(_BASE_REGEX_STRING % 'provide')
_REQUIRES_REGEX = re.compile(_BASE_REGEX_STRING % 'require')
# This line identifies base.js and should match the line in that file.
_GOOG_BASE_LINE = (
'var goog = goog || {}; // Identifies this file as the Closure base.')
class Source(object):
"""Scans a JavaScript source for its provided and required namespaces."""
def __init__(self, source):
"""Initialize a source.
Args:
source: str, The JavaScript source.
"""
self.provides = set()
self.requires = set()
self._source = source
self._ScanSource()
def __str__(self):
return 'Source %s' % self._path #!!!!!! what is self_path !!!!
def GetSource(self):
"""Get the source as a string."""
return self._source
def _ScanSource(self):
"""Fill in provides and requires by scanning the source."""
# TODO: Strip source comments first, as these might be in a comment
# block. RegExes can be borrowed from other projects.
source = self.GetSource()
source_lines = source.splitlines()
for line in source_lines:
match = _PROVIDE_REGEX.match(line)
if match:
self.provides.add(match.group(1))
match = _REQUIRES_REGEX.match(line)
if match:
self.requires.add(match.group(1))
# Closure's base file implicitly provides 'goog'.
for line in source_lines:
if line == _GOOG_BASE_LINE:
if len(self.provides) or len(self.requires):
raise Exception(
'Base files should not provide or require namespaces.')
self.provides.add('goog')
def GetFileContents(path):
"""Get a file's contents as a string.
Args:
path: str, Path to file.
Returns:
str, Contents of file.
Raises:
IOError: An error occurred opening or reading the file.
"""
fileobj = open(path)
try:
return fileobj.read()
finally:
fileobj.close()
答案 0 :(得分:1)
不,_path
只是一个可能或我没有像任何其他属性一样设置在对象上的属性。领先的下划线仅仅意味着作者认为它是对象的内部细节,并且不希望它被视为公共界面的一部分。
在这种特殊情况下,除非从源文件外部设置属性,否则它看起来只是一个错误。除非有人试图在str()
对象上调用Source
并且可能没有人这样做,否则它不会造成任何伤害。
self
有一些特别的东西。名称self
在任何方面都不是特殊的:将此名称用作方法的第一个参数是一种约定,但它只是一个与其他任何引用正在处理的对象的名称相同的名称。因此,如果您可以访问self._path
而不会导致错误,则可以通过该对象的任何其他名称同样访问它。