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

Fix a crash when calling copy.copy() without args #8784

Merged
merged 2 commits into from
Jun 18, 2023

Conversation

jacobtylerwalls
Copy link
Member

Type of Changes

Type
βœ“ πŸ› Bug fix

Description

Closes #8774

@jacobtylerwalls jacobtylerwalls added this to the 2.17.5 milestone Jun 18, 2023
Comment on lines +35 to +37
copy.copy(**{"x": os.environ}) # [shallow-copy-environ]
copy.copy(**{"y": os.environ}) # [unexpected-keyword-arg]
copy.copy(y=os.environ) # [no-value-for-parameter, unexpected-keyword-arg]
Copy link
Member Author

Choose a reason for hiding this comment

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

I would expect the last two lines to raise the same set of messages. We don't use inference to analyze whether **kwargs contains the missing named parameter x. We could.

Copy link
Member Author

Choose a reason for hiding this comment

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

Captured in #8785

@codecov
Copy link

codecov bot commented Jun 18, 2023 β€’

Codecov Report

Merging #8784 (c5d5451) into main (507dfc5) will increase coverage by 0.00%.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #8784   +/-   ##
=======================================
  Coverage   95.83%   95.84%           
=======================================
  Files         173      173           
  Lines       18459    18466    +7     
=======================================
+ Hits        17691    17698    +7     
  Misses        768      768           
Impacted Files Coverage Ξ”
pylint/checkers/stdlib.py 96.85% <100.00%> (+0.07%) ⬆️

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.

LGTM !

@github-actions
Copy link
Contributor

πŸ€– Effect of this PR on checked open source code: πŸ€–

Effect on home-assistant:
The following messages are now emitted:

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

Effect on pandas:
The following messages are now emitted:

  1. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/_testing/_io.py#L395
  2. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/nanops.py#L1608
  3. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/apply.py#L1154
  4. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/apply.py#L1421
  5. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/apply.py#L1607
  6. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/accessor.py#L70
  7. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/accessor.py#L141
  8. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/resample.py#L260
  9. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/resample.py#L260
  10. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/series.py#L574
  11. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/series.py#L578
  12. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/series.py#L3173
  13. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/series.py#L4343
  14. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/sorting.py#L316
  15. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/sorting.py#L430
  16. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/sorting.py#L554
  17. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/sorting.py#L603
  18. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/common.py#L460
  19. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/common.py#L597
  20. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/frame.py#L637
  21. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/frame.py#L640
  22. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/frame.py#L7456
  23. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/frame.py#L8108
  24. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/generic.py#L468
  25. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/generic.py#L2322
  26. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/generic.py#L5950
  27. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/dtypes/common.py#L121
  28. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/dtypes/common.py#L126
  29. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/array_algos/datetimelike_accumulations.py#L17
  30. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/array_algos/masked_reductions.py#L27
  31. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/core/array_algos/masked_reductions.py#L95

The following messages are no longer emitted:

  1. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/xml.py#L290
  2. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/sql.py#L691
  3. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/sql.py#L1006
  4. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/sql.py#L1413
  5. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/sql.py#L1874
  6. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/sql.py#L2329
  7. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/pytables.py#L2773
  8. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/stata.py#L1163
  9. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_odswriter.py#L121
  10. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L383
  11. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L387
  12. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L387
  13. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L390
  14. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L397
  15. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L422
  16. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L426
  17. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L426
  18. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L429
  19. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L436
  20. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L461
  21. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L465
  22. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L465
  23. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L468
  24. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L475
  25. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L626
  26. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L657
  27. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L727
  28. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L732
  29. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L1563
  30. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_base.py#L1567
  31. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_util.py#L27
  32. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/excel/_openpyxl.py#L481
  33. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L100
  34. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L120
  35. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L139
  36. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L229
  37. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L328
  38. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/json/_json.py#L961
  39. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L91
  40. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1652
  41. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1712
  42. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1804
  43. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1838
  44. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1926
  45. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1942
  46. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1976
  47. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L1986
  48. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L2047
  49. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L2988
  50. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L3507
  51. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style.py#L3823
  52. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L902
  53. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1218
  54. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1227
  55. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1303
  56. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1312
  57. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1427
  58. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1485
  59. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1769
  60. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/format.py#L1833
  61. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/css.py#L19
  62. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/css.py#L62
  63. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/excel.py#L92
  64. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/excel.py#L547
  65. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/excel.py#L557
  66. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/printing.py#L288
  67. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L54
  68. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L56
  69. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L135
  70. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L141
  71. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L144
  72. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L147
  73. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L1755
  74. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L1756
  75. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L1820
  76. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/formats/style_render.py#L2335
  77. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L619
  78. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L622
  79. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L626
  80. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L637
  81. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L676
  82. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L679
  83. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L683
  84. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L694
  85. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L733
  86. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L736
  87. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L740
  88. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L751
  89. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L790
  90. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L793
  91. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L797
  92. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L808
  93. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L856
  94. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L860
  95. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L864
  96. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L877
  97. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L948
  98. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L951
  99. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L955
  100. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L966
  101. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1005
  102. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1008
  103. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1012
  104. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1023
  105. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1062
  106. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1065
  107. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1069
  108. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1080
  109. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1119
  110. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1122
  111. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1126
  112. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1137
  113. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1185
  114. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1189
  115. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1193
  116. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1206
  117. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/readers.py#L1913
  118. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/base_parser.py#L356
  119. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/base_parser.py#L915
  120. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/base_parser.py#L929
  121. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/base_parser.py#L1226
  122. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/io/parsers/base_parser.py#L1322
  123. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L30
  124. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L61
  125. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L100
  126. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L102
  127. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L171
  128. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L267
  129. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L340
  130. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L340
  131. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/_decorators.py#L362
  132. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/version/__init__.py#L95
  133. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/util/version/__init__.py#L108
  134. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/pandas-dev/pandas/blob/aca58cdc72de54792b93c05c111e9c551c2f0537/pandas/tests/tseries/offsets/test_offsets.py#L64

Effect on sentry:
The following messages are now emitted:

  1. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/constants.py#L14
  2. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/http.py#L9
  3. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/sdk_updates.py#L4
  4. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/sdk_updates.py#L4
  5. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/exceptions.py#L1
  6. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/event_manager.py#L30
  7. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/event_manager.py#L30
  8. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/event_manager.py#L31
  9. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/event_manager.py#L35
  10. import-error:
    Unable to import 'django.core.handlers.wsgi'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/wsgi.py#L22
  11. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/wsgi.py#L22
  12. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/wsgi.py#L25
  13. no-name-in-module:
    No name 'forms' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L3
  14. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L10
  15. no-name-in-module:
    No name 'template' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L14
  16. import-error:
    Unable to import 'django.utils.decorators'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L15
  17. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L15
  18. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L16
  19. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/admin.py#L17
  20. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/models.py#L1
  21. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/models.py#L3
  22. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/models.py#L3
  23. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/migrations/0001_init_replays.py#L3
  24. no-member:
    Module 'django' has no 'utils' member
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/migrations/0001_init_replays.py#L48
  25. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/lib/query.py#L68
  26. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/lib/query.py#L317
  27. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/replays/lib/query.py#L405
  28. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics.py#L400
  29. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics.py#L861
  30. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics.py#L1117
  31. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics.py#L1140
  32. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/tasks.py#L4
  33. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/tasks.py#L7
  34. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/tasks.py#L7
  35. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L89
  36. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L108
  37. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L166
  38. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L227
  39. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L227
  40. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L228
  41. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/base.py#L229
  42. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/sessions.py#L78
  43. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics_sessions_v2.py#L724
  44. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics_sessions_v2.py#L740
  45. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics_sessions_v2.py#L778
  46. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/release_health/metrics_sessions_v2.py#L879
  47. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/versioning.py#L1
  48. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pipeline.py#L31
  49. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pipeline.py#L36
  50. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pipeline.py#L36
  51. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/request_cache.py#L5
  52. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/request_cache.py#L12
  53. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/request_cache.py#L12
  54. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/hashlib.py#L9
  55. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/hashlib.py#L55
  56. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/redis.py#L8
  57. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/committers.py#L20
  58. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/committers.py#L20
  59. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/committers.py#L152
  60. deprecated-typing-alias:
    'typing.Tuple' is deprecated, use 'tuple' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/committers.py#L164
  61. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/auth.py#L15
  62. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/services.py#L24
  63. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/services.py#L144
  64. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/retries.py#L9
  65. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/json.py#L13
  66. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/json.py#L14
  67. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/json.py#L15
  68. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/json.py#L16
  69. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/strings.py#L8
  70. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/functional.py#L1
  71. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/snuba.py#L22
  72. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/snuba.py#L22
  73. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/snuba.py#L970
  74. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/snuba.py#L1229
  75. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/otp.py#L8
  76. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L9
  77. import-error:
    Unable to import 'django.core.validators'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L10
  78. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L10
  79. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L11
  80. import-error:
    Unable to import 'django.utils.html'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L12
  81. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/avatar.py#L12
  82. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/signing.py#L7
  83. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/signing.py#L8
  84. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/safe.py#L7
  85. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/safe.py#L8
  86. no-name-in-module:
    No name 'forms' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/forms.py#L1
  87. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/validators.py#L4
  88. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/cache.py#L3
  89. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/cache.py#L3
  90. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/samples.py#L8
  91. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/dates.py#L8
  92. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/platform_categories.py#L4
  93. import-error:
    Unable to import 'django.core'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/linksign.py#L5
  94. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/linksign.py#L5
  95. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/get_suspect_resolutions_releases.py#L5
  96. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/get_suspect_resolutions_releases.py#L5
  97. import-error:
    Unable to import 'django.apps'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/apps.py#L1
  98. no-name-in-module:
    No name 'apps' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/apps.py#L1
  99. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/apps.py#L7
  100. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/apps.py#L7
  101. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions_releases/apps.py#L4
  102. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/performance_issues/detectors/consecutive_db_detector.py#L8
  103. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/performance_issues/detectors/n_plus_one_api_calls_detector.py#L11
  104. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/resolved_in_active_release.py#L3
  105. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/resolved_in_active_release.py#L3
  106. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/get_suspect_resolutions.py#L4
  107. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/get_suspect_resolutions.py#L4
  108. import-error:
    Unable to import 'django.apps'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/apps.py#L1
  109. no-name-in-module:
    No name 'apps' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/apps.py#L1
  110. missing-function-docstring:
    Missing function or method docstring
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/apps.py#L7
  111. no-self-use:
    Method could be a function
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/apps.py#L7
  112. too-few-public-methods:
    Too few public methods (1/2)
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/suspect_resolutions/apps.py#L4
  113. import-error:
    Unable to import 'django.core.cache'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pytest/fixtures.py#L19
  114. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pytest/fixtures.py#L19
  115. import-error:
    Unable to import 'django.utils.deprecation'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pytest/sentry.py#L31
  116. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pytest/sentry.py#L31
  117. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/pytest/selenium.py#L12
  118. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/sentry_apps/request_buffer.py#L5
  119. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/sentry_apps/request_buffer.py#L5
  120. import-error:
    Unable to import 'django.core.mail'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/message_builder.py#L13
  121. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/message_builder.py#L13
  122. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/message_builder.py#L14
  123. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/message_builder.py#L31
  124. import-error:
    Unable to import 'django.core'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/send.py#L4
  125. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/send.py#L4
  126. import-error:
    Unable to import 'django.core.mail'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/send.py#L5
  127. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/send.py#L5
  128. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/address.py#L7
  129. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/signer.py#L1
  130. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/signer.py#L2
  131. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/signer.py#L3
  132. import-error:
    Unable to import 'django.core.mail'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/backend.py#L8
  133. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/backend.py#L8
  134. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/email/backend.py#L9
  135. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/kvstore/bigtable.py#L8
  136. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/kvstore/bigtable.py#L8
  137. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/security/hash.py#L3
  138. import-error:
    Unable to import 'django.apps'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/decorate_models_by_relation.py#L6
  139. no-name-in-module:
    No name 'apps' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/decorate_models_by_relation.py#L6
  140. no-member:
    Module 'django' has no 'apps' member
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/decorate_models_by_relation.py#L81
  141. import-error:
    Unable to import 'django.apps'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/audit_silo_decorators.py#L7
  142. no-name-in-module:
    No name 'apps' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/audit_silo_decorators.py#L7
  143. no-member:
    Module 'django' has no 'apps' member
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/utils/silo/audit_silo_decorators.py#L34
  144. no-name-in-module:
    No name 'core' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/options/__init__.py#L2
  145. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/options/store.py#L10
  146. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/options/store.py#L10
  147. deprecated-typing-alias:
    'typing.Callable' is deprecated, use 'collections.abc.Callable' instead
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/additional_attachment_manager.py#L12
  148. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/__init__.py#L24
  149. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/__init__.py#L25
  150. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/__init__.py#L26
  151. import-error:
    Unable to import 'django.utils'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/digest.py#L7
  152. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/digest.py#L7
  153. import-error:
    Unable to import 'django.utils.html'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notifications/utils/avatar.py#L4
  154. no-name-in-module:
    No name 'utils' in module 'django'
    https://github.com/getsentry/sentry/blob/3d08f7111ac44256f3e0e09477bffcdfdcc34149/src/sentry/notification...

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

This comment was generated for commit c5d5451

@jacobtylerwalls jacobtylerwalls merged commit 92485a3 into pylint-dev:main Jun 18, 2023
@jacobtylerwalls jacobtylerwalls deleted the copy-crash branch June 18, 2023 14:43
github-actions bot pushed a commit that referenced this pull request Jun 18, 2023

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
(cherry picked from commit 92485a3)
Pierre-Sassoulas pushed a commit that referenced this pull request Jun 18, 2023
(cherry picked from commit 92485a3)

Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backported Crash πŸ’₯ A bug that makes pylint crash
Projects
None yet
Development

Successfully merging this pull request may close these issues.

no-argument call to copy.copy() crashes
2 participants