| Summary: | Incorrect signatures in code browser tooltips for built-in functions | ||
|---|---|---|---|
| Product: | [Developer tools] kdev-python | Reporter: | Eike Hein <hein> |
| Component: | general | Assignee: | Sven Brauch <mail> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | |
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | 1.2.0 | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Git commit 3dd1e9c778992f9e36d6701b8c37e2936803ecb6 by Sven Brauch. Committed on 29/06/2011 at 20:34. Pushed by brauch into branch 'master'. fix builtin function signature BUG:276460 M +71 -71 documentation_files/builtindocumentation.py http://commits.kde.org/kdev-python/3dd1e9c778992f9e36d6701b8c37e2936803ecb6 |
Given a file with the following contents: all ... the code browser tooltip will show the following signature: bool all( mixed self, mixed iterable ) ... which is wrong :-). For reference, the help(all) output in Python 2.7 and 3.2: all(...) all(iterable) -> bool The same is true for other built-in functions like 'any'.