Skip to content

gpython should treat standard input as a file, not as input to the REPL #25

Open
@raff

Description

@raff

This definition works:

class X(object):
  def __init__(self, x):
    self.x = x
  def __str__(self):
    return "my name is %s" % self.x

This doesn't:

class X(object):
  def __init__(self, x):
    self.x = x

  def __str__(self):
    return "my name is %s" % self.x

Both are accepted by C Python.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions