-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: relocate pylint comments and docstrings
- Loading branch information
1138-4EB
committed
Sep 25, 2019
1 parent
6cc7888
commit 6c6686f
Showing
19 changed files
with
106 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
# | ||
# Copyright (c) 2014-2019, Lars Asplund [email protected] | ||
|
||
# pylint: disable=too-many-lines | ||
|
||
""" | ||
Functionality to represent and operate on a HDL code project | ||
""" | ||
|
@@ -105,8 +107,8 @@ def add_library( | |
self._libraries[logical_name] = library | ||
self._lower_library_names_dict[logical_name.lower()] = library.name | ||
|
||
def add_source_file( | ||
self, # pylint: disable=too-many-arguments | ||
def add_source_file( # pylint: disable=too-many-arguments | ||
self, | ||
file_name, | ||
library_name, | ||
file_type="vhdl", | ||
|
@@ -195,8 +197,8 @@ def _find_vhdl_library_reference(self, library_name): | |
real_library_name = self._lower_library_names_dict[library_name] | ||
return self._libraries[real_library_name] | ||
|
||
def _find_other_vhdl_design_unit_dependencies( | ||
self, # pylint: disable=too-many-branches | ||
def _find_other_vhdl_design_unit_dependencies( # pylint: disable=too-many-branches | ||
self, | ||
source_file, | ||
depend_on_package_body, | ||
implementation_dependencies, | ||
|
@@ -860,8 +862,8 @@ class VerilogSourceFile(SourceFile): | |
Represents a Verilog source file | ||
""" | ||
|
||
def __init__( | ||
self, # pylint: disable=too-many-arguments | ||
def __init__( # pylint: disable=too-many-arguments | ||
self, | ||
file_type, | ||
name, | ||
library, | ||
|
@@ -940,8 +942,8 @@ class VHDLSourceFile(SourceFile): | |
Represents a VHDL source file | ||
""" | ||
|
||
def __init__( | ||
self, # pylint: disable=too-many-arguments | ||
def __init__( # pylint: disable=too-many-arguments | ||
self, | ||
name, | ||
library, | ||
vhdl_parser, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
# Copyright (c) 2014-2019, Lars Asplund [email protected] | ||
|
||
# pylint: disable=too-many-public-methods | ||
# pylint: disable=too-many-public-methods, too-many-lines | ||
|
||
""" | ||
Test the Incisive interface | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
# Copyright (c) 2014-2019, Lars Asplund [email protected] | ||
|
||
# pylint: disable=too-many-public-methods | ||
# pylint: disable=too-many-public-methods, too-many-lines | ||
|
||
""" | ||
Tests the test test_bench module | ||
|
Oops, something went wrong.