Skip to content
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8e17bf6
make class="argspec-highlight" this simbol "->"
jsbautista Feb 23, 2026
b06e923
Merge branch 'master' into panelHelp
jsbautista Mar 10, 2026
2e8dd96
Fix panel help show functions
jsbautista Mar 10, 2026
a8db749
Merge branch 'master' into panelHelp
jsbautista Mar 17, 2026
5c04136
Fix tests
jsbautista Mar 17, 2026
ab23b58
Merge branch 'panelHelp' of https://github.com/jsbautista/spyder into…
jsbautista Mar 17, 2026
6e81770
Fix tests and logic
jsbautista Mar 17, 2026
4199675
Fix tests and logic
jsbautista Mar 21, 2026
086c470
Merge branch 'master' into panelHelp
jsbautista Mar 21, 2026
ca82600
Fix help panel when show functions help
jsbautista Mar 24, 2026
47b7b96
Fix tests help panel when show functions help
jsbautista Mar 24, 2026
37fdfd4
Fix function detection to correctly identify user-defined functions
jsbautista Mar 26, 2026
894a8b4
Fix function detection to correctly identify user-defined function
jsbautista Mar 26, 2026
58971f6
Merge branch 'master' into panelHelp
jsbautista Mar 30, 2026
021068f
fix test_get_help_ipython_console_special_characters
jsbautista Mar 31, 2026
1647e39
fix test_get_help_ipython_console_special_characters documentation re…
jsbautista Apr 5, 2026
1739264
Merge branch 'master' into panelHelp
jsbautista Apr 6, 2026
fa7ea05
Merge branch 'master' into panelHelp
jsbautista Apr 13, 2026
af3b39f
Apply suggestions from code review
jsbautista Apr 13, 2026
77344b3
Merge branch 'master' into panelHelp
jsbautista Apr 21, 2026
68d0c6a
Add test to Verbose type annotations in help panel
jsbautista Apr 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix function detection to correctly identify user-defined function
  • Loading branch information
jsbautista committed Mar 26, 2026
commit 894a8b460791c99d19bfcf8dd0739aa15104c923
5 changes: 0 additions & 5 deletions spyder/plugins/help/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1063,11 +1063,6 @@ def show_help(self, obj_text, ignore_unknown=False):
note = doc.get('note', '')
is_function = '__main__' in note
if is_function and source_text:
Comment thread
jsbautista marked this conversation as resolved.
print("=============================================================")
print("Entro acaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
print("doc:", doc)
print("source_text:", source_text)
print("==============================================================")
signature = unicodedata.normalize("NFKD", source_text)
parts = signature.split('\n\n')
documentation = '\n\n'.join(parts[1:])
Expand Down
Loading