Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Add edition menu and toolbar to dataframe viewer #20546

Merged
merged 28 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f49d8cb
Created new features for dataframe edition.
dpturibio Feb 16, 2023
9dc57d5
duplication check implemented. /spyder-ide/ux-improvements#76
dpturibio Feb 16, 2023
b868170
add docstring to new functions
dpturibio Feb 16, 2023
3d339d5
manage delete more than one column or row at once
dpturibio Feb 16, 2023
87f8c5b
changed test to select same item in increased menu
dpturibio Feb 16, 2023
ced2e01
changed menu order
dpturibio Feb 23, 2023
837c4c7
correcting tests for new menu
dpturibio Feb 23, 2023
d218c21
2:correcting tests for new menu
dpturibio Feb 24, 2023
fa73c0d
3:correcting tests for new menu
dpturibio Feb 27, 2023
00fe092
correcting treatment of types different than string in index
dpturibio Mar 15, 2023
9467043
increasing time due to timeout error
dpturibio Mar 15, 2023
05ecb7b
increasing time due to timeout error
dpturibio Mar 15, 2023
4f83cf3
increasing time due to timeout error
dpturibio Mar 15, 2023
a77cb75
increasing time due to timeout error
dpturibio Mar 16, 2023
676404c
Update dataframeeditor.py imports
dpturibio Jul 13, 2023
f2e32f5
Update dataframeeditor.py
dpturibio Jul 13, 2023
c4af6c5
handle numpy dara types
dpturibio Aug 12, 2023
e298e01
Dataframe editor: Code style and other improvements
ccordoba12 Aug 10, 2023
f12c72c
check vector size before return value
dpturibio Aug 16, 2023
3e0f08d
created unit tests for dataframe tables
dpturibio Aug 29, 2023
d8264db
supporting multiple indexes when duplicating/adding rows/cols
dpturibio Sep 20, 2023
2f02eb3
pep8 errors
dpturibio Sep 20, 2023
4410794
checking if empty tuple, add an element
dpturibio Sep 28, 2023
9da113b
set focus an item after some change is applyied to the table
dpturibio Sep 29, 2023
f063e3d
enable or disable toolbar when there are items selected or not
dpturibio Oct 20, 2023
6f32ee8
Testing: Simplify test_dataframeeditor_menu_options
ccordoba12 Nov 2, 2023
995297b
Variable Explorer: Various code style improvements in dataframeeditor
ccordoba12 Nov 2, 2023
eb5029d
duplicated column inserted in the right
dpturibio Nov 7, 2023
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
2 changes: 1 addition & 1 deletion spyder/plugins/ipythonconsole/tests/test_ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -1586,7 +1586,7 @@ def test_stop_pdb(ipyconsole, qtbot):
# Start and interrupt a long execution
shell.execute("import time; time.sleep(10)")
qtbot.wait(500)
with qtbot.waitSignal(shell.executed, timeout=1000):
with qtbot.waitSignal(shell.executed, timeout=10000):
qtbot.mouseClick(stop_button, Qt.LeftButton)
assert "KeyboardInterrupt" in control.toPlainText()
# We are still in the debugger
Expand Down
Loading