You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
whereas I'd like to get
>>> s = (1, 2, 3)
>>> s[0] = 4
Traceback (most recent call last):
File "<input>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
Is there a way to achieve this ?
The text was updated successfully, but these errors were encountered:
When an exception is thrown, the code is not shown at all. This occurs in
.. runblock:: pycon
blocks.For example
produces
whereas I'd like to get
Is there a way to achieve this ?
The text was updated successfully, but these errors were encountered: