pylint
pylint copied to clipboard
Discover `.pyi` files
Type of Changes
| Type | |
|---|---|
| ✓ | :sparkles: New feature |
Description
Closes #9097
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 95.82%. Comparing base (
9dbf3df) to head (ef8c663).
Additional details and impacted files
@@ Coverage Diff @@
## main #9241 +/- ##
=======================================
Coverage 95.82% 95.82%
=======================================
Files 173 173
Lines 18797 18797
=======================================
Hits 18013 18013
Misses 784 784
| Files | Coverage Δ | |
|---|---|---|
| pylint/lint/pylinter.py | 96.44% <100.00%> (ø) |
@Pierre-Sassoulas @DanielNoord tried and failed to get --ignore-patterns to ignore .pyi files. Any regex help?
I think the * and dot are inverted in *., so it's "a * then one character", instead of "any characters 0 to n times" (.*). Maybe we also need an anchor at the end like this .*\.pyi$ ?
Thanks for the regex help. Turned out that was a red herring; I was looking at the wrong part of the logs and not seeing why the job failed. There's an AttributeError if you expand the echo warnings step.
Depends on https://github.com/pylint-dev/astroid/pull/2365
Sure. (Let's be sure not to promise full support for .pyi though, we still need astroid 3.2 with https://github.com/pylint-dev/astroid/pull/2375)
🤖 Effect of this PR on checked open source code: 🤖
Effect on pandas: The following messages are now emitted:
- no-member: Instance of 'date' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L63
- no-member: Instance of 'datetime' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L63
- no-member: Instance of 'date' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L64
- no-member: Instance of 'datetime' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L64
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/pytables.py#L2600
- invalid-sequence-index: Sequence index is not an int, slice, or instance with index https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/sas/sas7bdat.py#L439
- unsubscriptable-object: Value 'table' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L363
- unsubscriptable-object: Value 'table' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L364
- unsubscriptable-object: Value 'table' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L368
- unsubscriptable-object: Value 'table' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L379
- unsubscriptable-object: Value 'table' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L380
- unsubscriptable-object: Value 'ujson.ujson_loads(doc)' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/json/test_ujson.py#L593
- use-implicit-booleaness-not-comparison: "ujson.ujson_loads(...) == {}" can be simplified to "not ujson.ujson_loads(...)", if it is strictly a sequence, as an empty dict is falsey https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/json/test_ujson.py#L1003
- not-an-iterable: Non-iterable value dec is used in an iterating context https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/json/test_ujson.py#L1055
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L55
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L64
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L67
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L76
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L85
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L88
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L98
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L107
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L116
- c-extension-no-member: Module 'pandas._libs.parsers' has no 'ParserError' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L135
- unexpected-keyword-arg: Unexpected keyword argument 'on_bad_lines' in constructor call https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L138
- unexpected-keyword-arg: Unexpected keyword argument 'on_bad_lines' in constructor call https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L153
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L208
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L211
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L212
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L216
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L218
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L219
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L236
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L237
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L241
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L242
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L246
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L247
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L265
- unsubscriptable-object: Value 'exp' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L265
- unsubscriptable-object: Value 'result' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L266
- unsubscriptable-object: Value 'exp' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L266
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/series/methods/test_interpolate.py#L228
- redefined-variable-type: Redefinition of expected0 type from pandas._libs.tslibs.timestamps.Timestamp to pandas.core.series.Series https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/series/methods/test_tz_localize.py#L28
- redefined-variable-type: Redefinition of expected1 type from pandas._libs.tslibs.timestamps.Timestamp to pandas.core.series.Series https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/series/methods/test_tz_localize.py#L29
- redefined-variable-type: Redefinition of expected type from pandas._libs.tslibs.timestamps.Timestamp to pandas.core.indexes.datetimes.DatetimeIndex https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L1574
- unsubscriptable-object: Value 'tslib.array_to_datetime(strings)' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L2471
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L2881
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L2918
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L2989
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tools/test_to_datetime.py#L3016
- redefined-variable-type: Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.arrays.numpy_.NumpyExtensionArray https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/test_nat.py#L463
- no-member: Instance of 'datetime' has no 'to_period' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L20
- no-member: Instance of 'date' has no 'to_period' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L20
- unnecessary-negation: Consider changing "not jan == feb" to "jan != feb" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L408
- unnecessary-negation: Consider changing "not jan > feb" to "jan <= feb" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L412
- unnecessary-negation: Consider changing "not jan >= feb" to "jan < feb" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L413
- unnecessary-negation: Consider changing "not left < right" to "left >= right" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L423
- unnecessary-negation: Consider changing "not left > right" to "left <= right" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L424
- unnecessary-negation: Consider changing "not jan == day" to "jan != day" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L430
- unnecessary-negation: Consider changing "not jan == 1" to "jan != 1" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_arithmetic.py#L445
- no-member: Instance of 'Period' has no 'dayofyear' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_period.py#L1034
- no-member: Instance of 'Period' has no 'dayofyear' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_period.py#L1046
- no-member: Instance of 'Period' has no 'dayofyear' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_period.py#L1061
- no-member: Instance of 'Period' has no 'dayofyear' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_period.py#L1076
- no-member: Instance of 'Period' has no 'dayofyear' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/period/test_period.py#L1096
- no-member: Instance of 'timedelta' has no 'as_unit' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L975
- no-member: Instance of 'timedelta' has no 'as_unit' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L976
- no-member: Instance of 'timedelta' has no 'as_unit' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L994
- no-member: Instance of 'timedelta' has no 'as_unit' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L995
- unnecessary-negation: Consider changing "not td != pytd" to "td == pytd" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1021
- unnecessary-negation: Consider changing "not td < pytd" to "td >= pytd" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1022
- unnecessary-negation: Consider changing "not td > pytd" to "td <= pytd" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1023
- unnecessary-negation: Consider changing "not t < CustomClass(cmp_result=False)" to "t >= CustomClass(cmp_result=False)" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1130
- useless-suppression: Useless suppression of 'unnecessary-negation' https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1182
- redefined-variable-type: Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas._libs.tslibs.timedeltas.Timedelta https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_constructors.py#L162
- redefined-variable-type: Redefinition of result type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas._libs.tslibs.timedeltas.Timedelta https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_constructors.py#L165
- redefined-variable-type: Redefinition of tick type from pandas._libs.tslibs.offsets.Nano to pandas._libs.tslibs.offsets.Micro https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_constructors.py#L242
- no-member: Instance of 'Timedelta' has no '_repr_base' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_constructors.py#L433
- no-member: Instance of 'Timedelta' has no '_repr_base' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_constructors.py#L434
- no-member: Instance of 'timedelta' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L244
- no-member: Instance of 'timedelta' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L247
- no-member: Instance of 'timedelta' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L250
- invalid-unary-operand-type: bad operand type for unary ~: Timedelta https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L259
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L263
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L267
- no-member: Instance of 'Timedelta' has no 'components' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L392
- no-member: Instance of 'Timedelta' has no 'nanoseconds' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_timedelta.py#L664
- no-member: Instance of 'timedelta' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L70
- no-member: Instance of 'timedelta' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L74
- no-member: Instance of 'timedelta' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L82
- no-member: Instance of 'timedelta' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L84
- no-member: Instance of 'timedelta' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L88
- no-member: Instance of 'timedelta' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L90
- no-member: Instance of 'timedelta' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L121
- no-member: Instance of 'timedelta' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L126
- no-member: Instance of 'timedelta' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L131
- no-member: Instance of 'timedelta' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/methods/test_round.py#L135
- no-member: Instance of 'Timestamp' has no 'millisecond' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L104
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L300
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L300
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L300
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L300
- no-member: Class 'Timestamp' has no '_from_dt64' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L534
- no-member: Class 'Timestamp' has no '_from_dt64' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L640
- no-member: Class 'Timestamp' has no '_from_dt64' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L655
- no-member: Instance of 'datetime' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L881
- no-member: Instance of 'date' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L881
- no-member: Instance of 'datetime' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L884
- no-member: Instance of 'date' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L884
- no-member: Instance of 'timedelta' has no '_creso' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_timestamp.py#L887
- unnecessary-negation: Consider changing "not val != val" to "val == val" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L111
- unnecessary-negation: Consider changing "not val < val" to "val >= val" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L112
- unnecessary-negation: Consider changing "not val > val" to "val <= val" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L114
- unnecessary-negation: Consider changing "not val != other" to "val == other" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L119
- unnecessary-negation: Consider changing "not val < other" to "val >= other" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L120
- unnecessary-negation: Consider changing "not val > other" to "val <= other" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L122
- redefined-variable-type: Redefinition of other type from _pydatetime.datetime to pandas._libs.tslibs.timestamps.Timestamp https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L125
- unnecessary-negation: Consider changing "not val == 'foo'" to "val != 'foo'" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L137
- unnecessary-negation: Consider changing "not val == 10.0" to "val != 10.0" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L138
- unnecessary-negation: Consider changing "not val == 1" to "val != 1" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L139
- unnecessary-negation: Consider changing "not val == []" to "val != []" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L140
- use-implicit-booleaness-not-comparison: "val == []" can be simplified to "not val", if it is strictly a sequence, as an empty list is falsey https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L140
- unnecessary-negation: Consider changing "not val == {'foo': 1}" to "val != {'foo': 1}" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L141
- use-implicit-booleaness-not-comparison: "val != []" can be simplified to "val", if it is strictly a sequence, as an empty list is falsey https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L148
- unnecessary-negation: Consider changing "not left == right" to "left != right" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L163
- unnecessary-negation: Consider changing "not a == b" to "a != b" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L181
- unnecessary-negation: Consider changing "not b == a" to "b != a" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L192
- unnecessary-negation: Consider changing "not stamp == datetime(1600, 1, 1)" to "stamp != datetime(1600, 1, 1)" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L231
- unnecessary-negation: Consider changing "not stamp == datetime(2700, 1, 1)" to "stamp != datetime(2700, 1, 1)" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L232
- no-member: Instance of 'datetime' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L241
- no-member: Instance of 'date' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L241
- useless-suppression: Useless suppression of 'unnecessary-negation' https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L312
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L776
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L776
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L778
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L778
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L779
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L779
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L781
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_constructors.py#L781
- no-member: Instance of 'date' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L271
- no-member: Instance of 'datetime' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L271
- no-member: Instance of 'date' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L275
- no-member: Instance of 'datetime' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L275
- no-member: Instance of 'date' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L281
- no-member: Instance of 'datetime' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L281
- no-member: Instance of 'date' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L284
- no-member: Instance of 'datetime' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L284
- no-member: Instance of 'date' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L288
- no-member: Instance of 'datetime' has no 'ceil' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L288
- no-member: Instance of 'date' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L291
- no-member: Instance of 'datetime' has no 'round' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L291
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L321
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L321
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L326
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L326
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L331
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L331
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L335
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_round.py#L335
- no-member: Instance of 'date' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L36
- no-member: Instance of 'datetime' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L36
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L37
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L37
- no-member: Instance of 'date' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L40
- no-member: Instance of 'datetime' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L40
- no-member: Instance of 'date' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L47
- no-member: Instance of 'datetime' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L47
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L48
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L48
- no-member: Instance of 'date' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L51
- no-member: Instance of 'datetime' has no 'tz_localize' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_tz_localize.py#L51
- no-member: Instance of 'date' has no 'nanosecond' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L60
- no-member: Instance of 'datetime' has no 'nanosecond' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L60
- no-member: Instance of 'date' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L62
- no-member: Instance of 'datetime' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L62
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L66
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L66
- no-member: Instance of 'date' has no 'nanosecond' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L69
- no-member: Instance of 'datetime' has no 'nanosecond' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L69
- no-member: Instance of 'date' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L71
- no-member: Instance of 'datetime' has no 'to_pydatetime' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L71
- no-member: Instance of 'date' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L80
- no-member: Instance of 'datetime' has no '_value' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py#L80
- unexpected-keyword-arg: Unexpected keyword argument 'foo' in method call https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/methods/test_replace.py#L92
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/test_old_base.py#L620
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/test_old_base.py#L620
- invalid-unary-operand-type: bad operand type for unary ~: NoneType https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/test_old_base.py#L620
- redefined-variable-type: Redefinition of offset type from pandas._libs.tslibs.offsets.Day to pandas._libs.tslibs.offsets.BusinessDay https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/period/test_period.py#L199
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval_tree.py#L94
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval_tree.py#L111
- no-member: Instance of 'IntervalTree' has no 'root' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval_tree.py#L185
- no-member: Instance of 'IntervalTree' has no 'root' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval_tree.py#L204
- redefined-variable-type: Redefinition of result type from pandas.core.indexes.interval.IntervalIndex to pandas.core.indexes.base.Index https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval.py#L364
- redefined-variable-type: Redefinition of expected type from pandas.core.indexes.interval.IntervalIndex to pandas._libs.interval.Interval https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/interval/test_interval.py#L360
- redefined-variable-type: Redefinition of obj type from pandas.core.indexes.base.Index to pandas.core.arrays.numpy_.NumpyExtensionArray https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/categorical/test_astype.py#L84
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/timedeltas/test_delete.py#L32
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/timedeltas/test_delete.py#L59
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/timedeltas/test_delete.py#L64
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/timedeltas/test_delete.py#L71
- no-member: Instance of 'Index' has no 'tz' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_timezones.py#L62
- redefined-variable-type: Redefinition of ind type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_timezones.py#L60
- no-member: Instance of 'date' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_date_range.py#L1117
- no-member: Instance of 'datetime' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_date_range.py#L1117
- no-member: Instance of 'date' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_date_range.py#L1125
- no-member: Instance of 'datetime' has no 'floor' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/test_date_range.py#L1125
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L43
- no-member: Instance of 'Index' has no 'freqstr' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L61
- no-member: Instance of 'Index' has no 'tz' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L62
- no-member: Instance of 'Index' has no 'freqstr' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L70
- no-member: Instance of 'Index' has no 'tz' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L71
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L110
- no-member: Instance of 'Index' has no 'freq' member https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_delete.py#L115
- redefined-variable-type: Redefinition of item type from pandas._libs.tslibs.timestamps.Timestamp to _pydatetime.datetime https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_insert.py#L194
- redefined-variable-type: Redefinition of item type from pandas._libs.tslibs.timestamps.Timestamp to _pydatetime.datetime https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/datetimes/methods/test_insert.py#L217
- unsubscriptable-object: Value 'index.values' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/multi/test_missing.py#L111
- unsubscriptable-object: Value 'result.values' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/multi/test_integrity.py#L51
- redefined-variable-type: Redefinition of expected type from pandas.core.frame.DataFrame to pandas.core.indexes.base.Index https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/multi/test_integrity.py#L262
- invalid-name: Constant name "creso_infer" doesn't conform to UPPER_CASE naming style https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L23
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L31
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L38
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L47
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L56
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L65
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L73
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L82
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L87
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L100
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L105
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L157
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L176
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L179
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L191
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L229
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L237
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L248
- c-extension-no-member: Module 'pandas._libs.tslib' has no 'OutOfBoundsDatetime' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L261
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L278
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_array_to_datetime.py#L293
- c-extension-no-member: Module 'pandas._libs.tslibs.timezones' has no '_p_tz_cache_key' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_timezones.py#L35
- c-extension-no-member: Module 'pandas._libs.tslibs.timezones' has no '_p_tz_cache_key' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_timezones.py#L35
- c-extension-no-member: Module 'pandas._libs.tslibs.offsets' has no 'shift_month' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_liboffsets.py#L60
- c-extension-no-member: Module 'pandas._libs.tslibs.offsets' has no 'shift_month' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_liboffsets.py#L74
- c-extension-no-member: Module 'pandas._libs.tslibs.offsets' has no 'shift_month' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_liboffsets.py#L82
- c-extension-no-member: Module 'pandas._libs.tslibs.offsets' has no 'roll_convention' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_liboffsets.py#L171
- invalid-name: Constant name "creso_infer" doesn't conform to UPPER_CASE naming style https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L18
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L26
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L29
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L41
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L49
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L53
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L69
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L73
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L81
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L82
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L102
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L109
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L42
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L52
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L53
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L61
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L77
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L78
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L148
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L173
- c-extension-no-member: Module 'pandas._libs.tslibs.strptime' has no '_test_format_is_iso' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L356
- c-extension-no-member: Module 'pandas._libs.tslib' has no '_test_parse_iso8601' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parse_iso8601.py#L31
- c-extension-no-member: Module 'pandas._libs.tslib' has no '_test_parse_iso8601' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parse_iso8601.py#L60
- c-extension-no-member: Module 'pandas._libs.tslib' has no '_test_parse_iso8601' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parse_iso8601.py#L68
- c-extension-no-member: Module 'pandas._libs.tslib' has no '_test_parse_iso8601' member, but source is unavailable. Consider adding this module to extension-pkg-allow-list if you want to perform analysis based on run-time introspection of living objects. https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parse_iso8601.py#L74
- redefined-variable-type: Redefinition of dti type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.datetimelike.DatetimeTimedeltaMixin https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/reductions/test_stat_reductions.py#L43
- redefined-variable-type: Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas._libs.tslibs.timedeltas.Timedelta https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/reductions/test_reductions.py#L349
- redefined-variable-type: Redefinition of expected type from pandas.core.series.Series to pandas._libs.tslibs.timedeltas.Timedelta https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/reductions/test_reductions.py#L1135
- unsubscriptable-object: Value 'libalgos.groupsort_indexer(a, 1000)' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L37
- unsubscriptable-object: Value 'libalgos.groupsort_indexer(key, 1000000)' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L51
- unsubscriptable-object: Value 'libalgos.backfill' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L63
- unsubscriptable-object: Value 'libalgos.backfill' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L71
- unsubscriptable-object: Value 'libalgos.pad' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L80
- unsubscriptable-object: Value 'libalgos.pad' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L88
- unsubscriptable-object: Value 'libalgos.pad' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L96
- unsubscriptable-object: Value 'libalgos.pad' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L100
- unsubscriptable-object: Value 'libalgos.backfill' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L104
- unsubscriptable-object: Value 'libalgos.backfill' is unsubscriptable https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L108
- unnecessary-negation: Consider changing "not Inf < Inf" to "Inf >= Inf" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L128
- unnecessary-negation: Consider changing "not Inf > Inf" to "Inf <= Inf" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L128
- unnecessary-negation: Consider changing "not libalgos.Infinity() != libalgos.Infinity()" to "libalgos.Infinity() == libalgos.Infinity()" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L130
- unnecessary-negation: Consider changing "not NegInf < NegInf" to "NegInf >= NegInf" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L135
- unnecessary-negation: Consider changing "not NegInf > NegInf" to "NegInf <= NegInf" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L135
- unnecessary-negation: Consider changing "not libalgos.NegInfinity() != libalgos.NegInfinity()" to "libalgos.NegInfinity() == libalgos.NegInfinity()" https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L137
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L24
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L34
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L41
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L53
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L77
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L123
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L263
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L279
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L292
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L302
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L315
- unpacking-non-sequence: Attempting to unpack a non-sequence https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f824...
This comment was truncated because GitHub allows only 65536 characters in a comment.
This comment was generated for commit ef8c663565cc7b6c6327ab71338f01ee48ce0607