Skip to content

better output for cell magics  #31

Open
@Josverl

Description

@Josverl

normal cells show the eval of the last (non-blank) line
(its complicated to do so , but it allows for simple use)

the %%micropython cell magic does not do this

# %%micropython
msg = "Hello World"
msg

implementation option :

  • take the last line
  • check if we can eval that in Cpython ( or use the ipython methods for that ?)
  • ( if syntax error ) then execute the entire cell as normal ( not beatiful, but effective )
  • otherwise
    • remove the last line
    • run the first part of the cell ( if any)
    • eval the last line : mpremote resume eval "msg"
      combine the results

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions