| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 5b6e61e commit 7594078
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -284,7 +284,10 @@ def func(apple, apricot, banana, carrot): | |||
| 284 | 284 | argspec = list(inspect.getargspec(func)) | |
| 285 | 285 | ||
| 286 | 286 | argspec = ["func", argspec, False] | |
| 287 | - com=autocomplete.ParameterNameCompletion() | ||
| 288 | - self.assertSetEqual(com.matches(1, "a", argspec=argspec), set(['apple=', 'apricot='])) | ||
| 289 | - self.assertSetEqual(com.matches(2, "ba", argspec=argspec), set(['banana='])) | ||
| 290 | - self.assertSetEqual(com.matches(3, "car", argspec=argspec), set(['carrot='])) | ||
| 287 | + com = autocomplete.ParameterNameCompletion() | ||
| 288 | + self.assertSetEqual(com.matches(1, "a", argspec=argspec), | ||
| 289 | + set(['apple=', 'apricot='])) | ||
| 290 | + self.assertSetEqual(com.matches(2, "ba", argspec=argspec), | ||
| 291 | + set(['banana='])) | ||
| 292 | + self.assertSetEqual(com.matches(3, "car", argspec=argspec), | ||
| 293 | + set(['carrot='])) | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments