Skip to content
New issue

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

Discover .pyi files #9241

Merged
merged 1 commit into from Feb 23, 2024
Merged

Conversation

jacobtylerwalls
Copy link
Member

Type of Changes

Type
✨ New feature

Description

Closes #9097

@jacobtylerwalls jacobtylerwalls added this to the 3.1.0 milestone Nov 16, 2023
Copy link

codecov bot commented Nov 16, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.82%. Comparing base (9dbf3df) to head (ef8c663).

Additional details and impacted files

Impacted file tree graph

@@           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%> (ø)

DanielNoord
DanielNoord previously approved these changes Nov 17, 2023
@jacobtylerwalls
Copy link
Member Author

@Pierre-Sassoulas @DanielNoord tried and failed to get --ignore-patterns to ignore .pyi files. Any regex help?

@Pierre-Sassoulas
Copy link
Member

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$ ?

pylint/lint/pylinter.py Outdated Show resolved Hide resolved
@jacobtylerwalls
Copy link
Member Author

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.

@jacobtylerwalls jacobtylerwalls added the Needs astroid update Needs an astroid update (probably a release too) before being mergable label Jan 27, 2024
@jacobtylerwalls
Copy link
Member Author

Depends on pylint-dev/astroid#2365

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rebased on astroid 3.1.0 upgrade, let's merge when the pipeline is green 🚀

@jacobtylerwalls
Copy link
Member Author

Sure. (Let's be sure not to promise full support for .pyi though, we still need astroid 3.2 with pylint-dev/astroid#2375)

@jacobtylerwalls jacobtylerwalls merged commit 7300ed2 into pylint-dev:main Feb 23, 2024
44 checks passed
@jacobtylerwalls jacobtylerwalls deleted the pyi-files branch February 23, 2024 23:08
Copy link
Contributor

🤖 Effect of this PR on checked open source code: 🤖

Effect on pandas:
The following messages are now emitted:

  1. no-member:
    Instance of 'date' has no 'to_pydatetime' member
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L63
  2. no-member:
    Instance of 'datetime' has no 'to_pydatetime' member
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L63
  3. no-member:
    Instance of 'date' has no 'to_pydatetime' member
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L64
  4. no-member:
    Instance of 'datetime' has no 'to_pydatetime' member
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/_testing/_hypothesis.py#L64
  5. invalid-unary-operand-type:
    bad operand type for unary ~: NoneType
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/pytables.py#L2600
  6. 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
  7. unsubscriptable-object:
    Value 'table' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L363
  8. unsubscriptable-object:
    Value 'table' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L364
  9. unsubscriptable-object:
    Value 'table' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L368
  10. unsubscriptable-object:
    Value 'table' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L379
  11. unsubscriptable-object:
    Value 'table' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/io/json/_table_schema.py#L380
  12. 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
  13. 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
  14. 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
  15. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L55
  16. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L64
  17. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L67
  18. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L76
  19. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L85
  20. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L88
  21. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L98
  22. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L107
  23. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L116
  24. 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
  25. 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
  26. 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
  27. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L208
  28. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L211
  29. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L212
  30. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L216
  31. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L218
  32. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L219
  33. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L236
  34. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L237
  35. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L241
  36. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L242
  37. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L246
  38. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L247
  39. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L265
  40. unsubscriptable-object:
    Value 'exp' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L265
  41. unsubscriptable-object:
    Value 'result' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L266
  42. unsubscriptable-object:
    Value 'exp' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/io/parser/test_textreader.py#L266
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. 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
  67. 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
  68. 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
  69. 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
  70. 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
  71. 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
  72. 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
  73. 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
  74. 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
  75. useless-suppression:
    Useless suppression of 'unnecessary-negation'
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timedelta/test_arithmetic.py#L1182
  76. 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
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. 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
  112. 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
  113. 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
  114. 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
  115. 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
  116. 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
  117. 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
  118. 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
  119. 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
  120. 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
  121. 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
  122. unnecessary-negation:
    Consider changing "not val == []" to "val != []"
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L140
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. useless-suppression:
    Useless suppression of 'unnecessary-negation'
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/scalar/timestamp/test_comparisons.py#L312
  134. 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
  135. 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
  136. 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
  137. 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
  138. 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
  139. 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
  140. 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
  141. 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
  142. 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
  143. 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
  144. 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
  145. 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
  146. 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
  147. 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
  148. 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
  149. 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
  150. 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
  151. 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
  152. 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
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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
  159. 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
  160. 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
  161. 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
  162. 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
  163. 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
  164. 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
  165. 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
  166. 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
  167. 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
  168. 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
  169. 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
  170. 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
  171. 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
  172. 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
  173. 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
  174. 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
  175. 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
  176. 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
  177. 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
  178. 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
  179. 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
  180. 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
  181. 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
  182. 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
  183. 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
  184. 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
  185. 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
  186. 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
  187. 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
  188. 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
  189. 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
  190. 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
  191. 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
  192. 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
  193. 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
  194. 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
  195. 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
  196. 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
  197. 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
  198. 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
  199. 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
  200. 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
  201. 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
  202. 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
  203. 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
  204. 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
  205. 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
  206. 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
  207. 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
  208. 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
  209. 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
  210. 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
  211. 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
  212. 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
  213. 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
  214. 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
  215. 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
  216. 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
  217. unsubscriptable-object:
    Value 'index.values' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/multi/test_missing.py#L111
  218. unsubscriptable-object:
    Value 'result.values' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/indexes/multi/test_integrity.py#L51
  219. 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
  220. 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
  221. 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
  222. 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
  223. 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
  224. 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
  225. 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
  226. 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
  227. 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
  228. 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
  229. 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
  230. 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
  231. 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
  232. 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
  233. 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
  234. 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
  235. 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
  236. 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
  237. 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
  238. 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
  239. 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
  240. 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
  241. 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
  242. 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
  243. 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
  244. 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
  245. 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
  246. 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
  247. 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
  248. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L26
  249. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L29
  250. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L41
  251. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L49
  252. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L53
  253. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L69
  254. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L73
  255. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L81
  256. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L82
  257. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L102
  258. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_strptime.py#L109
  259. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L42
  260. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L52
  261. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L53
  262. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L61
  263. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L77
  264. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L78
  265. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L148
  266. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/tslibs/test_parsing.py#L173
  267. 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
  268. 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
  269. 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
  270. 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
  271. 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
  272. 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
  273. 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
  274. 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
  275. 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
  276. 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
  277. unsubscriptable-object:
    Value 'libalgos.backfill' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L63
  278. unsubscriptable-object:
    Value 'libalgos.backfill' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L71
  279. unsubscriptable-object:
    Value 'libalgos.pad' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L80
  280. unsubscriptable-object:
    Value 'libalgos.pad' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L88
  281. unsubscriptable-object:
    Value 'libalgos.pad' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L96
  282. unsubscriptable-object:
    Value 'libalgos.pad' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L100
  283. unsubscriptable-object:
    Value 'libalgos.backfill' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L104
  284. unsubscriptable-object:
    Value 'libalgos.backfill' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_libalgos.py#L108
  285. 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
  286. 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
  287. 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
  288. 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
  289. 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
  290. 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
  291. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L24
  292. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L34
  293. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L41
  294. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L53
  295. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L77
  296. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L123
  297. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L263
  298. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L279
  299. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L292
  300. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L302
  301. unpacking-non-sequence:
    Attempting to unpack a non-sequence
    https://github.com/pandas-dev/pandas/blob/54d2033fabc1a064b05842b41f8247ae3fdd6fd6/pandas/tests/libs/test_join.py#L315
  302. 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 ef8c663

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement ✨ Improvement to a component
Projects
None yet
Development

Successfully merging this pull request may close these issues.

.pyi files are not discovered when running on a folder
5 participants