Joseph Fox-Rabinovitz
Joseph Fox-Rabinovitz
I output two strings with manually inserted color commands using regular `print` after calling `init`. The background color resets fine on Linux but not on Windows. Here is my code....
Some questions that have been bothering me about the functions described in https://docs.python.org/3/c-api/memory.html: - What are the differences between `PyMem_RawMalloc`, `PyMem_Malloc`, `PyObject_Malloc`, etc.? - Do these functions automatically raise a...
Reading the docs, it is very difficult to be certain about the types of outputs, and even more so the expected inputs. An example is here: https://stackoverflow.com/q/49890368/2988730. The prime example...
I am referring to http://pymbook.readthedocs.io/en/latest/operatorsexpressions.html#shorthand-operator. x op= y is not always equivalent to x = x op y. The statement is always true for immutable objects like ints and tuples....
Looking at https://plotly.com/python/reference/layout/#layout-font, we see > **size** > *Code:* `fig.update_layout(font_size=)` > *Type:* number greater than or equal to 1 > *Default:* `12` But what are the units of this number?...
### Bug summary If I create subplot axes with `sharex=True` and `sharey=True`, I can not `twinx` one of them later to set a different formatter on the y-axis. ### Code...
As per @charris's request, I am resurrecting #7804. This likely also closes #12336. Discussed in the mailing list forever ago: https://mail.python.org/pipermail/numpy-discussion/2016-July/075722.html Discussed in the mailing list now: https://mail.python.org/pipermail/numpy-discussion/2021-February/081476.html I did...