go-python / go-python/gpython

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

Open
#25 5 comments 0 reactions 0 assignees View on GitHub
bug
Dominant language
Go
Stars
1k
Forks
105
PR merge metrics
No merged PRs in 30d

Description

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.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.