Skip to content

Commit b8f93bd

Browse files
committedAug 21, 2018
Fix imports and docs after move to go-python org
1 parent b8a7165 commit b8f93bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+74
-74
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# gpython
22

3-
[![Build Status](https://travis-ci.org/ncw/gpython.svg?branch=master)](https://travis-ci.org/ncw/gpython)
4-
[![GoDoc](https://godoc.org/github.com/ncw/gpython?status.svg)](https://godoc.org/github.com/ncw/gpython)
3+
[![Build Status](https://travis-ci.org/go-python/gpython.svg?branch=master)](https://travis-ci.org/go-python/gpython)
4+
[![GoDoc](https://godoc.org/github.com/go-python/gpython?status.svg)](https://godoc.org/github.com/go-python/gpython)
55

66
gpython is a part re-implementation / part port of the Python 3.4
77
interpreter to the Go language, "batteries not included".
@@ -27,11 +27,11 @@ modules are written in C not python. The converted modules are:
2727

2828
Gpython is a Go program and comes as a single binary file.
2929

30-
Download the relevant binary from here: https://github.com/ncw/gpython/releases
30+
Download the relevant binary from here: https://github.com/go-python/gpython/releases
3131

3232
Or alternatively if you have Go installed use
3333

34-
go get github.com/ncw/gpython
34+
go get github.com/go-python/gpython
3535

3636
and this will build the binary in `$GOPATH/bin`. You can then modify
3737
the source and submit patches.

‎ast/asdl_go.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ def main(srcfile):
12311231
f = open(p, "w")
12321232
f.write(auto_gen_msg)
12331233
f.write('package ast\n')
1234-
f.write('import "github.com/ncw/gpython/py"\n')
1234+
f.write('import "github.com/go-python/gpython/py"\n')
12351235
c = ChainOfVisitors(TypeDefVisitor(f),
12361236
StructVisitor(f),
12371237
PrototypeVisitor(f),

0 commit comments

Comments
 (0)
Please sign in to comment.