Commit a58792f
r
EEE2
everse-string: Don't redefine builting function 'input' (exercism#1412)
It hurts readability to redefine the meaning of well-known builtins such
as 'input', and pylint rightfully warns about this, saying
W: 1,12: Redefining built-in 'input' (redefined-builtin)
It's a little unfortunate that Python grabs this part of the namespace,
but let's fix the issue by using a different word for 'the input text'.1 parent 9520f5b commit a58792f
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
| 1 | + | |
| 2 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
0 commit comments