mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 2b14686ea8c691627c9a8155f75a7c6727a48bf3
18 lines
396 B
Python
18 lines
396 B
Python
planets = (
|
|
"Mercury", "Venus", "Earth", "Mars",
|
|
"Jupiter", "Saturn", "Uranus",
|
|
"Neptune")
|
|
|
|
|
|
def fooooooo():
|
|
planets = (
|
|
"Mercury", "Venus", "Earth",
|
|
"Mars", "Jupiter", "Saturn",
|
|
"Uranus", "Neptune")
|
|
|
|
def baaaaaar():
|
|
planets = (
|
|
"Mercury", "Venus", "Earth",
|
|
"Mars", "Jupiter", "Saturn",
|
|
"Uranus", "Neptune")
|