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

Upgrade astroid to 3.0.0a4 #8685

Merged
merged 4 commits into from
Jun 7, 2023

Conversation

Pierre-Sassoulas
Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas commented May 14, 2023

Type of Changes

Type
🔨 Refactoring

Description

Refs #8682, #8738

@Pierre-Sassoulas Pierre-Sassoulas added Maintenance Discussion or action around maintaining pylint or the dev workflow Skip news 🔇 This change does not require a changelog entry labels May 14, 2023
@jacobtylerwalls
Copy link
Member

Thanks, I'll push some commits to this branch. 👍

@jacobtylerwalls
Copy link
Member

Re: the remaining failure: I remember looking at this a couple weeks ago. The test passes in isolation, so there's a pollution issue. I haven't made it much farther.

@Pierre-Sassoulas
Copy link
Member Author

Pierre-Sassoulas commented May 14, 2023

Looked into it a little into it might be due to TypingChecker.leave_module not being executed (and thus self._deprecated_typing_alias_msgs.clear()). Maybe something to do with the way we launch the functional tests, I'll be able to check that in more detail tomorrow.

@jacobtylerwalls jacobtylerwalls added the Blocked 🚧 Blocked by a particular issue label May 15, 2023
@jacobtylerwalls
Copy link
Member

We should bump all the way to astroid 3.0.0a4, because the primer will be busted without pylint-dev/astroid#2181.

@jacobtylerwalls
Copy link
Member

Re: the remaining failure: I remember looking at this a couple weeks ago. The test passes in isolation, so there's a pollution issue. I haven't made it much farther.

See pylint-dev/astroid#2185 for a fix.

@jacobtylerwalls
Copy link
Member

Just waiting on astroid 3.0.0a4

@jacobtylerwalls jacobtylerwalls changed the title Upgrade astroid to 3.0.0a3 Upgrade astroid to 3.0.0a4 Jun 6, 2023
@Pierre-Sassoulas Pierre-Sassoulas removed the Blocked 🚧 Blocked by a particular issue label Jun 6, 2023
jacobtylerwalls
jacobtylerwalls previously approved these changes Jun 6, 2023
@Pierre-Sassoulas Pierre-Sassoulas enabled auto-merge (rebase) June 6, 2023 20:07
@jacobtylerwalls
Copy link
Member

I'm looking into the PyPy 3.8 failure, but it doesn't look serious. Thinking about writing a follow-up issue (and xfailing it with a link)

@github-actions

This comment has been minimized.

@jacobtylerwalls
Copy link
Member

So we have a test regression_5408 extremely similar to test_recursion_on_inference_tip in astroid.

The failure of it on PyPy 3.8 is transient; rerunning it passed eventually. This is not stable enough for CI, so we should add the same skip we added in astroid, see pylint-dev/astroid#2181 (comment) and 1f9ba55.

Where exactly the failure is happening is interesting. We're correctly catching the RecursionError and reraising as InferenceError, but chaining it to RecursionError as the cause is becoming problematic, maybe because InferenceError is bloated with all kinds of references to nodes.

I'm going to experiment by only chaining the exceptions on versions 3.9+ (and push the commit to this branch).

@jacobtylerwalls
Copy link
Member

I'm going to experiment by only chaining the exceptions on versions 3.9+ (and push the commit to this branch).

Oof, I'd have to do this in astroid. Will come back with a better proposal.

The test file lints on Python 3.8 without trouble,
but pytest aborts with exit code 134.
@jacobtylerwalls
Copy link
Member

I skipped the test on Python 3.8. I mentioned in the commit message for the skip that the file lints fine on python 3.8, rather it's pytest that's choking. Not necessary to look into at this juncture IMO.

@codecov
Copy link

codecov bot commented Jun 7, 2023

Codecov Report

Merging #8685 (6ee06a4) into main (e5584d5) will not change coverage.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #8685   +/-   ##
=======================================
  Coverage   95.82%   95.82%           
=======================================
  Files         173      173           
  Lines       18386    18386           
=======================================
  Hits        17618    17618           
  Misses        768      768           
Impacted Files Coverage Δ
pylint/checkers/design_analysis.py 98.87% <ø> (ø)
pylint/checkers/modified_iterating_checker.py 97.72% <ø> (ø)
pylint/checkers/typecheck.py 96.46% <100.00%> (ø)

@Pierre-Sassoulas Pierre-Sassoulas merged commit 55e0480 into pylint-dev:main Jun 7, 2023
40 checks passed
@github-actions
Copy link
Contributor

github-actions bot commented Jun 7, 2023

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

Effect on astroid:
The following messages are now emitted:

  1. useless-suppression:
    Useless suppression of 'redefined-variable-type'
    https://github.com/pylint-dev/astroid/blob/a6eb2b87c5bfa39929b8047010788afce48461bf/astroid/manager.py#L289

The following messages are no longer emitted:

  1. suppressed-message:
    Suppressed 'redefined-variable-type' (from line 289)
    https://github.com/pylint-dev/astroid/blob/a6eb2b87c5bfa39929b8047010788afce48461bf/astroid/manager.py#L289

Effect on home-assistant:
The following messages are no longer emitted:

  1. too-many-instance-attributes:
    Too many instance attributes (8/7)
    https://github.com/home-assistant/core/blob/d8ceb6463e8c3446d6d27ba4e8e1cfb26e729cf9/homeassistant/components/zone/__init__.py#L284

Effect on music21:
The following messages are now emitted:

  1. redefined-variable-type:
    Redefinition of thisObject type from music21.note.Note to music21.note.GeneralNote
    https://github.com/cuthbertLab/music21/blob/405b1fc719f7fddd0ad21fa9a396f73c115d5c14/music21/humdrum/spineParser.py#L2388
  2. redefined-variable-type:
    Redefinition of sc3 type from music21.scale.MinorScale to music21.scale.MajorScale
    https://github.com/cuthbertLab/music21/blob/405b1fc719f7fddd0ad21fa9a396f73c115d5c14/music21/scale/test_scale_main.py#L163
  3. redefined-variable-type:
    Redefinition of keySignatures type from list to music21.stream.iterator.StreamIterator
    https://github.com/cuthbertLab/music21/blob/405b1fc719f7fddd0ad21fa9a396f73c115d5c14/music21/stream/base.py#L3261
  4. redefined-variable-type:
    Redefinition of ksIter type from list to music21.stream.iterator.StreamIterator
    https://github.com/cuthbertLab/music21/blob/405b1fc719f7fddd0ad21fa9a396f73c115d5c14/music21/stream/base.py#L6789

The following messages are no longer emitted:

  1. redefined-variable-type:
    Redefinition of sc3 type from music21.scale.MajorScale to music21.scale.MinorScale
    https://github.com/cuthbertLab/music21/blob/405b1fc719f7fddd0ad21fa9a396f73c115d5c14/music21/scale/test_scale_main.py#L169

Effect on pytest:
The following messages are no longer emitted:

  1. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/pytester.py#L421
  2. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/pytester.py#L1074
  3. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/pytester.py#L1474
  4. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/recwarn.py#L90
  5. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/monkeypatch.py#L99
  6. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/hookspec.py#L502
  7. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/hookspec.py#L856
  8. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/python_api.py#L45
  9. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/python_api.py#L787
  10. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/junitxml.py#L96
  11. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/logging.py#L450
  12. consider-using-dict-items:
    Consider iterating with .items()
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L534
  13. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L97
  14. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L256
  15. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L260
  16. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L263
  17. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L267
  18. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L398
  19. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/reports.py#L401
  20. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/skipping.py#L84
  21. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/skipping.py#L203
  22. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/skipping.py#L291
  23. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/capture.py#L368
  24. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/capture.py#L488
  25. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/capture.py#L635
  26. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/pathlib.py#L75
  27. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L89
  28. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L96
  29. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L101
  30. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L236
  31. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L360
  32. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L364
  33. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L957
  34. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1139
  35. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1149
  36. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1181
  37. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1184
  38. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1489
  39. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1492
  40. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/fixtures.py#L1492
  41. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/debugging.py#L33
  42. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/debugging.py#L101
  43. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/debugging.py#L104
  44. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L133
  45. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L298
  46. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L327
  47. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L557
  48. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1214
  49. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1242
  50. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1242
  51. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1274
  52. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1274
  53. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1293
  54. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1293
  55. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1390
  56. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1391
  57. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1408
  58. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1412
  59. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/terminal.py#L1427
  60. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/unittest.py#L39
  61. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/unittest.py#L40
  62. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/runner.py#L203
  63. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/runner.py#L258
  64. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/runner.py#L324
  65. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/runner.py#L373
  66. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/runner.py#L470
  67. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/doctest.py#L162
  68. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/doctest.py#L217
  69. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/doctest.py#L377
  70. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L340
  71. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L352
  72. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L826
  73. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L949
  74. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L961
  75. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L971
  76. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1022
  77. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1028
  78. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1036
  79. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1069
  80. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1075
  81. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/assertion/rewrite.py#L1085
  82. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/argparsing.py#L55
  83. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/argparsing.py#L163
  84. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/argparsing.py#L455
  85. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L111
  86. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L348
  87. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L416
  88. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L623
  89. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L928
  90. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/__init__.py#L1676
  91. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/findpaths.py#L94
  92. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/config/findpaths.py#L180
  93. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/expression.py#L174
  94. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L132
  95. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L157
  96. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L200
  97. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L214
  98. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L264
  99. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L316
  100. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L455
  101. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/mark/structures.py#L593
  102. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L116
  103. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L423
  104. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L452
  105. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L458
  106. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L501
  107. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L542
  108. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L614
  109. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L921
  110. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L965
  111. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L1039
  112. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L1054
  113. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L1059
  114. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L1244
  115. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/code.py#L1265
  116. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/source.py#L96
  117. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/source.py#L119
  118. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/source.py#L146
  119. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_code/source.py#L178
  120. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_py/path.py#L142
  121. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pytest-dev/pytest/blob/1a1753906518aeac506b5e14713abbc9112d891a/src/_pytest/_py/error.py#L80

Effect on django:
The following messages are now emitted:

  1. too-many-instance-attributes:
    Too many instance attributes (8/7)
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/expressions.py#L168
  2. attribute-defined-outside-init:
    Attribute 'remote_field' defined outside init
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/fields/__init__.py#L697

The following messages are no longer emitted:

  1. redefined-variable-type:
    Redefinition of field type from django.db.models.fields.related.OneToOneField to django.forms.widgets.Widget
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/base.py#L346
  2. too-many-instance-attributes:
    Too many instance attributes (9/7)
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/expressions.py#L168
  3. redefined-variable-type:
    Redefinition of value type from django.db.models.expressions.Value to django.db.models.expressions.BaseExpression
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/lookups.py#L60
  4. redefined-variable-type:
    Redefinition of lhs type from django.db.models.expressions.Value to django.db.models.expressions.BaseExpression
    https://github.com/django/django/blob/4f6a51dfe6a4a8d5ed61c73b902e808109f142b0/django/db/models/lookups.py#L101

Effect on pandas:
The following messages are now emitted:

  1. redefined-variable-type:
    Redefinition of result type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/test_base.py#L243
  2. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.interval.IntervalIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/interval/test_interval.py#L722
  3. unsubscriptable-object:
    Value 'result.asi8' is unsubscriptable
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_scalar_compat.py#L278
  4. redefined-variable-type:
    Redefinition of i2 type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_indexing.py#L138
  5. redefined-variable-type:
    Redefinition of i2 type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_indexing.py#L208
  6. no-member:
    Method '_selected_obj' has no 'name' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/window/test_api.py#L29
  7. no-member:
    Method '_selected_obj' has no 'columns' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/window/test_api.py#L33
  8. no-member:
    Method '_selected_obj' has no 'columns' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/window/test_api.py#L36
  9. redefined-variable-type:
    Redefinition of idx type from pandas.core.indexes.period.PeriodIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/indexing/test_where.py#L888
  10. redefined-variable-type:
    Redefinition of result type from pandas.core.generic.NDFrame to pandas.core.frame.DataFrame
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/constructors/test_from_records.py#L116
  11. redefined-variable-type:
    Redefinition of result type from pandas.core.frame.DataFrame to pandas.core.series.Series
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/constructors/test_from_records.py#L430
  12. redefined-variable-type:
    Redefinition of recons.index type from pandas.core.indexes.multi.MultiIndex to .ndarray
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/methods/test_to_csv.py#L267
  13. redefined-variable-type:
    Redefinition of df type from pandas.core.frame.DataFrame to pandas.core.generic.NDFrame
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/methods/test_asfreq.py#L157
  14. redefined-variable-type:
    Redefinition of other type from pandas.core.indexes.base.Index to .ndarray
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_datetime64.py#L790
  15. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_datetime64.py#L1564
  16. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_datetime64.py#L2369
  17. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.datetimes.DatetimeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_datetime64.py#L2384
  18. redefined-variable-type:
    Redefinition of left type from pandas.core.indexes.period.PeriodIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_period.py#L379
  19. redefined-variable-type:
    Redefinition of right type from pandas.core.indexes.period.PeriodIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_period.py#L380
  20. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.period.PeriodIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_period.py#L874
  21. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_timedelta64.py#L1332
  22. redefined-variable-type:
    Redefinition of expected_sub type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_timedelta64.py#L1342
  23. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L204
  24. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L260
  25. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.range.RangeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L1314
  26. redefined-variable-type:
    Redefinition of data type from pandas.core.internals.array_manager.SingleArrayManager to pandas.core.internals.managers.SingleBlockManager
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L409
  27. redefined-variable-type:
    Redefinition of other type from pandas.core.series.Series to pandas.core.generic.NDFrame
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L3400
  28. redefined-variable-type:
    Redefinition of data type from list to .ndarray
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L544
  29. no-member:
    Instance of 'Index' has no 'levels' member; maybe 'nlevels'?
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L2140
  30. no-member:
    Instance of 'Index' has no 'codes' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L2141
  31. redefined-variable-type:
    Redefinition of indexer type from .ndarray to slice
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/multi.py#L3083
  32. redefined-variable-type:
    Redefinition of result type from pandas.core.indexes.range.RangeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/range.py#L1033
  33. redefined-variable-type:
    Redefinition of result type from pandas.core.generic.NDFrame to pandas.core.series.Series
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/sparse/accessor.py#L114
  34. redefined-variable-type:
    Redefinition of v type from bytes to int
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/computation/pytables.py#L236

The following messages are no longer emitted:

  1. no-member:
    Instance of 'Table' has no 'write_data' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/io/pytables.py#L4331
  2. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/util/_decorators.py#L24
  3. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/util/_test_decorators.py#L204
  4. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/util/version/__init__.py#L91
  5. redefined-variable-type:
    Redefinition of result type from tuple to pandas.core.indexes.category.CategoricalIndex
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/test_algos.py#L704
  6. redefined-variable-type:
    Redefinition of tups type from list to .ndarray
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/test_sorting.py#L81
  7. redefined-variable-type:
    Redefinition of index type from pandas.core.indexes.interval.IntervalIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/interval/test_interval.py#L101
  8. 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/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/interval/test_interval.py#L385
  9. no-member:
    Class 'Index' has no 'asi8' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_scalar_compat.py#L272
  10. no-member:
    Class 'Index' has no 'asi8' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_scalar_compat.py#L273
  11. no-member:
    Class 'Index' has no 'asi8' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/datetimes/test_scalar_compat.py#L278
  12. redefined-variable-type:
    Redefinition of i2 type from pandas.core.indexes.base.Index to pandas.core.indexes.period.PeriodIndex
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/indexes/period/test_indexing.py#L555
  13. redefined-variable-type:
    Redefinition of ii type from pandas.core.indexes.interval.IntervalIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/frame/methods/test_transpose.py#L23
  14. redefined-variable-type:
    Redefinition of result type from pandas.core.generic.NDFrame to pandas.core.series.Series
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/series/methods/test_reindex.py#L96
  15. redefined-variable-type:
    Redefinition of result type from pandas.core.arrays.sparse.array.SparseArray to pandas.core.frame.DataFrame
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arrays/sparse/test_unary.py#L33
  16. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L206
  17. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.timedeltas.TimedeltaIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L262
  18. redefined-variable-type:
    Redefinition of expected type from pandas.core.indexes.range.RangeIndex to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/tests/arithmetic/test_numeric.py#L1327
  19. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/_testing/_io.py#L395
  20. redefined-variable-type:
    Redefinition of labels type from list to .ndarray
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/common.py#L281
  21. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/common.py#L460
  22. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/common.py#L597
  23. used-before-assignment:
    Using variable 'arr_mask' before assignment
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/missing.py#L110
  24. unsupported-assignment-operation:
    'mangled_aggspec' does not support item assignment
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/apply.py#L1596
  25. redefined-variable-type:
    Redefinition of mangled_aggspec type from str to list
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/apply.py#L1598
  26. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/apply.py#L1152
  27. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/apply.py#L1419
  28. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/apply.py#L1605
  29. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/generic.py#L467
  30. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/generic.py#L2318
  31. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/generic.py#L5946
  32. redefined-variable-type:
    Redefinition of data type from .ndarray to list
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/construction.py#L611
  33. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/resample.py#L260
  34. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/resample.py#L260
  35. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/sorting.py#L316
  36. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/sorting.py#L430
  37. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/sorting.py#L554
  38. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/sorting.py#L603
  39. redefined-variable-type:
    Redefinition of data type from pandas.core.internals.array_manager.SingleArrayManager to pandas.core.internals.managers.BlockManager
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L409
  40. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L571
  41. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L575
  42. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L3170
  43. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/series.py#L4338
  44. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/nanops.py#L1608
  45. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/frame.py#L637
  46. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/frame.py#L640
  47. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/frame.py#L7461
  48. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/frame.py#L8113
  49. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/accessor.py#L70
  50. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/accessor.py#L141
  51. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/_numba/executor.py#L19
  52. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/reshape/tile.py#L576
  53. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/reshape/tile.py#L576
  54. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/reshape/concat.py#L618
  55. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/reshape/pivot.py#L762
  56. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/extension.py#L112
  57. redefined-variable-type:
    Redefinition of data type from .ndarray to list
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L528
  58. no-member:
    Instance of 'RangeIndex' has no 'levels' member; maybe 'nlevels'?
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L2140
  59. no-member:
    Instance of 'RangeIndex' has no 'codes' member
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L2141
  60. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L1389
  61. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/base.py#L5706
  62. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/datetimelike.py#L180
  63. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/multi.py#L587
  64. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/multi.py#L1147
  65. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/multi.py#L1350
  66. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/range.py#L500
  67. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/indexes/range.py#L999
  68. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/strings/object_array.py#L158
  69. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/strings/base.py#L74
  70. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/strings/accessor.py#L72
  71. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/strings/accessor.py#L1353
  72. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L441
  73. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L462
  74. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L515
  75. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L544
  76. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L564
  77. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L625
  78. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L707
  79. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L771
  80. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L1170
  81. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L1363
  82. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L1409
  83. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L1410
  84. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/rolling.py#L1914
  85. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/numba_.py#L22
  86. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/numba_.py#L180
  87. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/window/expanding.py#L208
  88. invalid-unary-operand-type:
    bad operand type for unary ~: NoneType
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/tools/numeric.py#L284
  89. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/tools/datetimes.py#L96
  90. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/tools/datetimes.py#L217
  91. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/methods/describe.py#L357
  92. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/array_algos/datetimelike_accumulations.py#L17
  93. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/array_algos/masked_reductions.py#L27
  94. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/array_algos/masked_reductions.py#L95
  95. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/array_algos/masked_accumulations.py#L20
  96. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/util/numba_.py#L63
  97. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/util/numba_.py#L63
  98. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/managers.py#L537
  99. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/managers.py#L1488
  100. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/managers.py#L1521
  101. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/array_manager.py#L462
  102. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/array_manager.py#L927
  103. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/array_manager.py#L966
  104. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/array_manager.py#L1312
  105. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/internals/blocks.py#L154
  106. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/ops.py#L823
  107. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/ops.py#L858
  108. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/ops.py#L882
  109. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/generic.py#L111
  110. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/generic.py#L526
  111. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/generic.py#L1799
  112. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/generic.py#L1799
  113. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/generic.py#L2712
  114. redefined-variable-type:
    Redefinition of grouping_vector type from .ndarray to pandas.core.indexes.base.Index
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/grouper.py#L589
  115. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/numba_.py#L25
  116. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/numba_.py#L66
  117. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/numba_.py#L70
  118. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/numba_.py#L126
  119. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/groupby/numba_.py#L130
  120. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/string_arrow.py#L336
  121. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/numeric.py#L44
  122. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/base.py#L1280
  123. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/period.py#L799
  124. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/datetimelike.py#L196
  125. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/sparse/array.py#L158
  126. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/arrow/array.py#L1936
  127. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/arrays/arrow/array.py#L1999
  128. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/computation/ops.py#L465
  129. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/computation/align.py#L67
  130. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/computation/expr.py#L252
  131. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/2b69700c0b983b2770307d9ec87afb2f8a6d1c28/pandas/core/computation/expr.py#L269
  132. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https...

This comment was truncated because GitHub allows only 65536 characters in a comment.

This comment was generated for commit 6ee06a4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Maintenance Discussion or action around maintaining pylint or the dev workflow Skip news 🔇 This change does not require a changelog entry
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants