fname stringlengths 63 176 | rel_fname stringclasses 706
values | line int64 -1 4.5k | name stringlengths 1 81 | kind stringclasses 2
values | category stringclasses 2
values | info stringlengths 0 77.9k ⌀ |
|---|---|---|---|---|---|---|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/cell-var-from-loop/bad.py | doc/data/messages/c/cell-var-from-loop/bad.py | 4 | bar | ref | function | bar()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/cell-var-from-loop/good.py | doc/data/messages/c/cell-var-from-loop/good.py | 0 | bar | def | function | def bar(x):
print(x)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/cell-var-from-loop/good.py | doc/data/messages/c/cell-var-from-loop/good.py | 4 | foo | def | function | def foo(numbers):
for i in numbers:
bar(i)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/cell-var-from-loop/good.py | doc/data/messages/c/cell-var-from-loop/good.py | 6 | bar | ref | function | bar(i)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/bad.py | doc/data/messages/c/comparison-of-constants/bad.py | 0 | is_the_answer | def | function | def is_the_answer() -> bool:
return 42 == 42 # [comparison-of-constants]
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/bad.py | doc/data/messages/c/comparison-of-constants/bad.py | -1 | is_the_answer | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/bad.py | doc/data/messages/c/comparison-of-constants/bad.py | -1 | bool | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | 0 | is_the_answer | def | function | def is_the_answer(meaning_of_life: int) -> bool:
return meaning_of_life == 42
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | -1 | is_the_answer | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | -1 | meaning_of_life | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | -1 | int | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | -1 | bool | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-of-constants/good.py | doc/data/messages/c/comparison-of-constants/good.py | -1 | meaning_of_life | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | 0 | function_returning_a_fruit | def | function | def function_returning_a_fruit() -> str:
return "orange"
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | 3 | is_an_orange | def | function | def is_an_orange(fruit: str = "apple"):
# apple == <function function_returning_a_fruit at 0x7f343ff0a1f0>
return fruit == function_returning_a_fruit # [comparison-with-callable]
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | function_returning_a_fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | str | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | is_an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | str | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/bad.py | doc/data/messages/c/comparison-with-callable/bad.py | -1 | function_returning_a_fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/good.py | doc/data/messages/c/comparison-with-callable/good.py | 0 | function_returning_a_fruit | def | function | def function_returning_a_fruit() -> str:
return "orange"
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/good.py | doc/data/messages/c/comparison-with-callable/good.py | 3 | is_an_orange | def | function | def is_an_orange(fruit: str = "apple"):
# apple == orange
return fruit == function_returning_a_fruit()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-callable/good.py | doc/data/messages/c/comparison-with-callable/good.py | 5 | function_returning_a_fruit | ref | function | return fruit == function_returning_a_fruit()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | 0 | is_an_orange | def | function | def is_an_orange(fruit):
an_orange = "orange"
return fruit == fruit # [comparison-with-itself]
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | -1 | is_an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | -1 | an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/bad.py | doc/data/messages/c/comparison-with-itself/bad.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | 0 | is_an_orange | def | function | def is_an_orange(fruit):
an_orange = "orange"
return an_orange == fruit
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | -1 | is_an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | -1 | an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | -1 | an_orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/comparison-with-itself/good.py | doc/data/messages/c/comparison-with-itself/good.py | -1 | fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/confusing-consecutive-elif/bad.py | doc/data/messages/c/confusing-consecutive-elif/bad.py | 0 | myfunc | def | function | def myfunc(shall_continue: bool, shall_exit: bool):
if shall_continue:
if input("Are you sure?") == "y":
print("Moving on.")
elif shall_exit: # [confusing-consecutive-elif]
print("Exiting.")
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/confusing-consecutive-elif/good.py | doc/data/messages/c/confusing-consecutive-elif/good.py | 1 | myfunc | def | function | def myfunc(shall_continue: bool, shall_exit: bool):
if shall_continue:
if input("Are you sure?") == "y":
print("Moving on.")
else:
pass
elif shall_exit:
print("Exiting.")
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/confusing-consecutive-elif/good.py | doc/data/messages/c/confusing-consecutive-elif/good.py | 12 | user_confirmation | def | function | def user_confirmation():
if input("Are you sure?") == "y":
print("Moving on.")
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/confusing-consecutive-elif/good.py | doc/data/messages/c/confusing-consecutive-elif/good.py | 17 | myfunc2 | def | function | def myfunc2(shall_continue: bool, shall_exit: bool):
if shall_continue:
user_confirmation()
elif shall_exit:
print("Exiting.")
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/confusing-consecutive-elif/good.py | doc/data/messages/c/confusing-consecutive-elif/good.py | 19 | user_confirmation | ref | function | user_confirmation()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/consider-using-f-string/bad.py | doc/data/messages/c/consider-using-f-string/bad.py | 9 | Template | ref | function | template_order = Template('$eggs and $spam: $price ¤').substitute(eggs=menu[0], spam=menu[1], price=menu[2])
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/consider-using-f-string/bad.py | doc/data/messages/c/consider-using-f-string/bad.py | 9 | substitute | ref | function | template_order = Template('$eggs and $spam: $price ¤').substitute(eggs=menu[0], spam=menu[1], price=menu[2])
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/consider-using-with/bad.py | doc/data/messages/c/consider-using-with/bad.py | 1 | read | ref | function | contents = file.read()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/consider-using-with/bad.py | doc/data/messages/c/consider-using-with/bad.py | 2 | close | ref | function | file.close()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/c/consider-using-with/good.py | doc/data/messages/c/consider-using-with/good.py | 1 | read | ref | function | contents = file.read()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/bad.py | doc/data/messages/d/duplicate-argument-name/bad.py | 0 | get_fruits | def | function | def get_fruits(apple, banana, apple): # [duplicate-argument-name]
pass
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/bad.py | doc/data/messages/d/duplicate-argument-name/bad.py | -1 | get_fruits | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/bad.py | doc/data/messages/d/duplicate-argument-name/bad.py | -1 | apple | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/bad.py | doc/data/messages/d/duplicate-argument-name/bad.py | -1 | banana | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/bad.py | doc/data/messages/d/duplicate-argument-name/bad.py | -1 | apple | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/good.py | doc/data/messages/d/duplicate-argument-name/good.py | 0 | get_fruits | def | function | def get_fruits(apple, banana, orange):
pass
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/good.py | doc/data/messages/d/duplicate-argument-name/good.py | -1 | get_fruits | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/good.py | doc/data/messages/d/duplicate-argument-name/good.py | -1 | apple | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/good.py | doc/data/messages/d/duplicate-argument-name/good.py | -1 | banana | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-argument-name/good.py | doc/data/messages/d/duplicate-argument-name/good.py | -1 | orange | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | 0 | Animal | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | 4 | Cat | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | -1 | Cat | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/bad.py | doc/data/messages/d/duplicate-bases/bad.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | 0 | Animal | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | 4 | Bird | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | 8 | Cat | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | -1 | Bird | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | -1 | Cat | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/d/duplicate-bases/good.py | doc/data/messages/d/duplicate-bases/good.py | -1 | Animal | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/e/empty-docstring/bad.py | doc/data/messages/e/empty-docstring/bad.py | 0 | foo | def | function | def foo(): # [empty-docstring]
""""""
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/e/empty-docstring/bad.py | doc/data/messages/e/empty-docstring/bad.py | -1 | foo | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/e/empty-docstring/good.py | doc/data/messages/e/empty-docstring/good.py | 0 | foo | def | function | def foo():
"""A dummy description."""
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/e/empty-docstring/good.py | doc/data/messages/e/empty-docstring/good.py | -1 | foo | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/bad.py | doc/data/messages/f/function-redefined/bad.py | 0 | get_email | def | function | def get_email():
pass
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/bad.py | doc/data/messages/f/function-redefined/bad.py | 4 | get_email | def | function | def get_email(): # [function-redefined]
pass
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/bad.py | doc/data/messages/f/function-redefined/bad.py | -1 | get_email | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/bad.py | doc/data/messages/f/function-redefined/bad.py | -1 | get_email | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/good.py | doc/data/messages/f/function-redefined/good.py | 0 | get_email | def | function | def get_email():
pass
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/f/function-redefined/good.py | doc/data/messages/f/function-redefined/good.py | -1 | get_email | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/g/global-statement/bad.py | doc/data/messages/g/global-statement/bad.py | 3 | foo | def | function | def foo():
global var # [global-statement]
var = 10
print(var)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/g/global-statement/bad.py | doc/data/messages/g/global-statement/bad.py | 9 | foo | ref | function | foo()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/g/global-statement/good.py | doc/data/messages/g/global-statement/good.py | 3 | foo | def | function | def foo():
print(var)
return 10
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/g/global-statement/good.py | doc/data/messages/g/global-statement/good.py | 8 | foo | ref | function | var = foo()
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/import-outside-toplevel/bad.py | doc/data/messages/i/import-outside-toplevel/bad.py | 0 | print_python_version | def | function | def print_python_version():
import sys # [import-outside-toplevel]
print(sys.version_info)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/import-outside-toplevel/good.py | doc/data/messages/i/import-outside-toplevel/good.py | 3 | print_python_version | def | function | def print_python_version():
print(sys.version_info)
|
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | 3 | Color | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | 8 | Fruit | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | enum | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | Enum | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | Color | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | Enum | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | ORANGE | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | CHERRY | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | Fruit | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | Color | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/bad.py | doc/data/messages/i/invalid-enum-extension/bad.py | -1 | APPLE | ref | function | none |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/good.py | doc/data/messages/i/invalid-enum-extension/good.py | 3 | Color | def | class | |
playground/2af25c45-9624-42e9-b1b3-5ecb19e13cc8/pylint/doc/data/messages/i/invalid-enum-extension/good.py | doc/data/messages/i/invalid-enum-extension/good.py | 8 | Fruit | def | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.