We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Paebbels brought up a couple of good issues in #4 that are present in main.
class VhdlObject(obect):
class VhdlObject:
.format
f""
os.path.splitext(fname)[1].lower() in ('.vhdl', '.vhd')
pathlib
Finally, while not directly Python 2 related. There's the issue of Sphinx's parsing of arguments for documentation:
Args:
:param [ParamName]:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@Paebbels brought up a couple of good issues in #4 that are present in main.
class VhdlObject(obect):
should beclass VhdlObject:
(fixed in VHDL parser from andres manelli's fork for entity parsing support #4).format
instead off""
(fixed in Python 2 to 3 migration changes: format strings #6)os.path.splitext(fname)[1].lower() in ('.vhdl', '.vhd')
should usepathlib
insteadFinally, while not directly Python 2 related. There's the issue of Sphinx's parsing of arguments for documentation:
Args:
should be:param [ParamName]:
See Writing docstrings - Sphinx-RTD-TutorialThe text was updated successfully, but these errors were encountered: