Skip to content

Commit ec3b7dc

Browse files
committed
all: use go:build directives
Signed-off-by: Sebastien Binet <[email protected]>
1 parent 38b2e3c commit ec3b7dc

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

py/gen.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build ignore
56
// +build ignore
67

78
package main

py/range_repr110.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build go1.10
56
// +build go1.10
7+
68
// Range object
79

810
package py

py/range_repr19.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5+
//go:build !go1.10
56
// +build !go1.10
7+
68
// Range object
79

810
package py

repl/web/serve.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//+build none
1+
//go:build none
2+
// +build none
23

34
package main
45

0 commit comments

Comments
 (0)