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
Interestingly, if a tuple or list of tuples is embedded inside a record, it is displayed correctly, which may help to diagnose the cause of the problem:
This is likely a duplicate of #14. Our current regexp is too strict for tupleTest : ( Int, Int ) and alike. I'll keep the issue open until I fix #14 and verify that your example works.
See also related issue #14
Just so we have a record of it, currently, when setting a code block to
raw
/r
, tuples are not displayed.Minimal working example:
Should display
(99,50)
but nothing is displayed, nor is any warning generated.The same problem occurs with a list of tuples:
Interestingly, if a tuple or list of tuples is embedded inside a record, it is displayed correctly, which may help to diagnose the cause of the problem:
Generated the following (correct) raw output:
{ booItem = True, intItem = 1, lstItem = [3,4,5], rcdItem = { nestedName = "fourteen", nestedValue = 15 }, strItem = "two", tLsItem = [(10,11),(12,13)], tp3Item = (False,8,"nine"), tplItem = (6,7) }[(1,2),(3,4)]
The text was updated successfully, but these errors were encountered: