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

Inconsistent behavior on printing #9

Closed
pri22296 opened this issue May 15, 2017 · 1 comment
Closed

Inconsistent behavior on printing #9

pri22296 opened this issue May 15, 2017 · 1 comment

Comments

@pri22296
Copy link
Owner

>>> from beautifultable import BeautifulTable
>>> table = BeautifulTable()
>>> table.append_row([1])
>>> table.pop_row()
>>> print(table)
+--+
|  |
+--+
+--+
>>> table.append_row([1])
>>> table.pop_column()
>>> print(table)
+
||
+
+
@pri22296
Copy link
Owner Author

pri22296 commented May 15, 2017

Realized that deleting a row does not clear the column's metadata and it should not. User should continue expecting older column's meta to work. However as discussed in issue #10 , Nothing should have been printed in both these cases.

@pri22296 pri22296 changed the title Inconsistent behavior on prinitng Inconsistent behavior on printing May 25, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant