OverflowError: signed short integer is greater than maximum: Difference between revisions

From Helpful
Jump to navigation Jump to search
(Created page with " Search results suggest this error mostly comes up around date parsing, where parsing makes specific assumptions about values, e.g. that January 1231893th is not a date. ......")
 
mNo edit summary
Line 2: Line 2:


Search results suggest this error mostly comes up around date parsing, where parsing makes specific assumptions about values, e.g. that January 1231893th is not a date.
Search results suggest this error mostly comes up around date parsing, where parsing makes specific assumptions about values, e.g. that January 1231893th is not a date.


...but it seems to potentially happen at any border between python types and C-extension types, like the array module, or my case, ncurses (trying to initialize more than 32k color pairs).
...but it seems to potentially happen at any border between python types and C-extension types, like the array module, or my case, ncurses (trying to initialize more than 32k color pairs).

Revision as of 15:30, 15 January 2024


Search results suggest this error mostly comes up around date parsing, where parsing makes specific assumptions about values, e.g. that January 1231893th is not a date.


...but it seems to potentially happen at any border between python types and C-extension types, like the array module, or my case, ncurses (trying to initialize more than 32k color pairs).