lint
This commit is contained in:
@@ -223,7 +223,7 @@ class FieldLogic:
|
|||||||
set or clear side effect).
|
set or clear side effect).
|
||||||
"""
|
"""
|
||||||
w_modifiable = field.is_sw_writable
|
w_modifiable = field.is_sw_writable
|
||||||
r_modifiable = (field.get_property('onread') is not None)
|
r_modifiable = field.get_property('onread') is not None
|
||||||
buffer_writes = field.parent.get_property('buffer_writes')
|
buffer_writes = field.parent.get_property('buffer_writes')
|
||||||
buffer_reads = field.parent.get_property('buffer_reads')
|
buffer_reads = field.parent.get_property('buffer_reads')
|
||||||
|
|
||||||
@@ -383,7 +383,7 @@ class FieldLogic:
|
|||||||
The returned list is sorted in priority order - the conditional with highest
|
The returned list is sorted in priority order - the conditional with highest
|
||||||
precedence is first in the list.
|
precedence is first in the list.
|
||||||
"""
|
"""
|
||||||
sw_precedence = (field.get_property('precedence') == PrecedenceType.sw)
|
sw_precedence = field.get_property('precedence') == PrecedenceType.sw
|
||||||
result = []
|
result = []
|
||||||
|
|
||||||
if sw_precedence:
|
if sw_precedence:
|
||||||
|
|||||||
@@ -12,6 +12,9 @@ commands to be visible via the PATH environment variable.
|
|||||||
* Go to the *Individual Files* tab.
|
* Go to the *Individual Files* tab.
|
||||||
* Download Questa files. (Don't forget part 2!)
|
* Download Questa files. (Don't forget part 2!)
|
||||||
* Install
|
* Install
|
||||||
|
* Create an account on https://licensing.intel.com
|
||||||
|
* press "Enroll" to register
|
||||||
|
* After you confirm your email, go back to this page and press "Enroll" again to finish enrollment
|
||||||
* Go to https://licensing.intel.com/psg/s/sales-signup-evaluationlicenses
|
* Go to https://licensing.intel.com/psg/s/sales-signup-evaluationlicenses
|
||||||
* Generate a free *Starter Edition* license file for Questa
|
* Generate a free *Starter Edition* license file for Questa
|
||||||
* Easiest to use a *fixed* license using your NIC ID (MAC address of your network card via `ifconfig`)
|
* Easiest to use a *fixed* license using your NIC ID (MAC address of your network card via `ifconfig`)
|
||||||
|
|||||||
@@ -567,5 +567,5 @@ preferred-modules=
|
|||||||
|
|
||||||
# Exceptions that will emit a warning when being caught. Defaults to
|
# Exceptions that will emit a warning when being caught. Defaults to
|
||||||
# "BaseException, Exception".
|
# "BaseException, Exception".
|
||||||
overgeneral-exceptions=BaseException,
|
overgeneral-exceptions=builtin.BaseException,
|
||||||
Exception
|
builtin.Exception
|
||||||
|
|||||||
Reference in New Issue
Block a user