Yan QiDong
Yan QiDong
When executing `ocker-compose run localshop syncdb`, there is error information like: > ERROR: No such service: localshop
This crash will only happen in Python `3.5`. ## The Test file ```python def func(iterable, *args, **kwargs): other(*iterable, *args, **kwargs) def other(*args, **kwargs): print(args) print(kwargs) func([1, 2], 'arg0', 'arg1', arg2=2,...
### Steps to reproduce Given a file `a.py`: ```python # pylint: disable=missing-module-docstring # pylint: disable=too-few-public-methods # pylint: disable=missing-class-docstring # pylint: disable=invalid-name class A: value: int obj = A() obj.value +=...
#### Describe the feature Current `TrafficCommandUpdate` message is here (while docs are removed for short): ```proto message TrafficCommandUpdate { optional InterfaceVersion version = 1; optional Timestamp timestamp = 2; optional...