1
0
mirror of https://github.com/golang/go synced 2024-11-25 01:08:02 -07:00

renaming_4: gofix -r everything/but/src/pkg

R=rsc
CC=golang-dev
https://golang.org/cl/5338043
This commit is contained in:
Rob Pike 2011-11-08 15:43:02 -08:00
parent 45e3bcb343
commit f9489bed72
52 changed files with 87 additions and 87 deletions

View File

@ -2,10 +2,10 @@ package main
import ( import (
"errors" "errors"
"http"
"io/ioutil" "io/ioutil"
"net/http"
"regexp" "regexp"
"template" "text/template"
) )
type Page struct { type Page struct {

View File

@ -1,9 +1,9 @@
package main package main
import ( import (
"http"
"io/ioutil" "io/ioutil"
"template" "net/http"
"text/template"
) )
type Page struct { type Page struct {

View File

@ -1,10 +1,10 @@
package main package main
import ( import (
"http"
"io/ioutil" "io/ioutil"
"net/http"
"regexp" "regexp"
"template" "text/template"
) )
type Page struct { type Page struct {

View File

@ -1,9 +1,9 @@
package main package main
import ( import (
"http"
"io/ioutil" "io/ioutil"
"template" "net/http"
"text/template"
) )
type Page struct { type Page struct {

View File

@ -1,10 +1,10 @@
package main package main
import ( import (
"http"
"io/ioutil" "io/ioutil"
"net/http"
"regexp" "regexp"
"template" "text/template"
) )
type Page struct { type Page struct {

View File

@ -1,12 +1,12 @@
package main package main
import ( import (
"http"
"flag" "flag"
"fmt" "fmt"
"io" "io"
"log" "log"
"net" "net"
"net/http"
"os" "os"
"strings" "strings"
) )

View File

@ -1,9 +1,9 @@
package main package main
import ( import (
"template"
"os"
"io/ioutil" "io/ioutil"
"os"
"text/template"
) )
func main() { func main() {

View File

@ -2,7 +2,7 @@ package main
import ( import (
"fmt" "fmt"
"http" "net/http"
) )
func handler(w http.ResponseWriter, r *http.Request) { func handler(w http.ResponseWriter, r *http.Request) {

View File

@ -237,7 +237,7 @@ package main
import ( import (
"fmt" "fmt"
"http" "net/http"
) )
func handler(w http.ResponseWriter, r *http.Request) { func handler(w http.ResponseWriter, r *http.Request) {

View File

@ -2,8 +2,8 @@ package main
import ( import (
"fmt" "fmt"
"http"
"io/ioutil" "io/ioutil"
"net/http"
) )
type Page struct { type Page struct {

View File

@ -2,8 +2,8 @@ package main
import ( import (
"fmt" "fmt"
"http"
"io/ioutil" "io/ioutil"
"net/http"
) )
type Page struct { type Page struct {

View File

@ -3,13 +3,13 @@ package main
import ( import (
"bytes" "bytes"
"flag" "flag"
"go/ast"
"go/parser" "go/parser"
"go/printer" "go/printer"
"go/ast"
"go/token" "go/token"
"log" "log"
"template"
"os" "os"
"text/template"
) )
var ( var (

View File

@ -50,8 +50,8 @@ import (
"flag" "flag"
"fmt" "fmt"
"io" "io"
"math/rand"
"os" "os"
"rand"
"strings" "strings"
"time" "time"
) )

View File

@ -6,7 +6,7 @@ package main
import ( import (
"fmt" "fmt"
"rand" "math/rand"
) )
const ( const (

View File

@ -5,8 +5,8 @@
package main package main
import ( import (
"http"
"log" "log"
"net/http"
"time" "time"
) )

View File

@ -2,9 +2,9 @@ package main
import ( import (
"flag" "flag"
"http"
"log" "log"
"template" "net/http"
"text/template"
) )
var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18 var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18

View File

@ -8,7 +8,7 @@ import (
"container/heap" "container/heap"
"flag" "flag"
"fmt" "fmt"
"rand" "math/rand"
"time" "time"
) )

View File

@ -27,7 +27,7 @@ import (
"os" "os"
"regexp" "regexp"
"strings" "strings"
"template" "text/template"
) )
func Usage() { func Usage() {

View File

@ -6,10 +6,10 @@ package main
import ( import (
"bytes" "bytes"
"exec"
"io" "io"
"log" "log"
"os" "os"
"os/exec"
"strings" "strings"
) )

View File

@ -6,13 +6,13 @@ package main
import ( import (
"bytes" "bytes"
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"http"
"json"
"log" "log"
"net/http"
"net/url"
"strconv" "strconv"
"url"
) )
type param map[string]string type param map[string]string

View File

@ -5,6 +5,7 @@
package main package main
import ( import (
"encoding/xml"
"errors" "errors"
"flag" "flag"
"fmt" "fmt"
@ -17,7 +18,6 @@ import (
"strconv" "strconv"
"strings" "strings"
"time" "time"
"xml"
) )
const ( const (

View File

@ -5,16 +5,16 @@
package main package main
import ( import (
"exec"
"flag" "flag"
"http"
"io" "io"
"io/ioutil" "io/ioutil"
"log" "log"
"net/http"
"os" "os"
"os/exec"
"runtime" "runtime"
"strconv" "strconv"
"template" "text/template"
) )
var ( var (

View File

@ -5,11 +5,11 @@
package main package main
import ( import (
"exec"
"fmt" "fmt"
"go/token" "go/token"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
) )
// run runs the command argv, feeding in stdin on standard input. // run runs the command argv, feeding in stdin on standard input.

View File

@ -10,7 +10,7 @@ import (
"io" "io"
"os" "os"
"strings" "strings"
"template" "text/template"
) )
// A Command is an implementation of a go command // A Command is an implementation of a go command

View File

@ -9,8 +9,8 @@ package main
import ( import (
"archive/zip" "archive/zip"
"http"
"log" "log"
"net/http"
"path" "path"
) )

View File

@ -13,19 +13,19 @@
package main package main
import ( import (
"encoding/xml"
"errors" "errors"
"fmt" "fmt"
"http"
"io" "io"
"log" "log"
"net/http"
"os" "os"
"regexp" "regexp"
"sort" "sort"
"strconv" "strconv"
"strings" "strings"
"template" "text/template"
"utf8" "unicode/utf8"
"xml"
) )
// Handler for /doc/codewalk/ and below. // Handler for /doc/codewalk/ and below.

View File

@ -17,7 +17,7 @@ import (
"io" "io"
"regexp" "regexp"
"strconv" "strconv"
"template" "text/template"
) )
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@ -13,9 +13,9 @@ import (
"go/doc" "go/doc"
"go/printer" "go/printer"
"go/token" "go/token"
"http"
"io" "io"
"log" "log"
"net/http"
"os" "os"
"path" "path"
"path/filepath" "path/filepath"
@ -23,7 +23,7 @@ import (
"runtime" "runtime"
"sort" "sort"
"strings" "strings"
"template" "text/template"
"time" "time"
) )

View File

@ -26,8 +26,8 @@ package main
import ( import (
"archive/zip" "archive/zip"
"fmt" "fmt"
"http"
"io" "io"
"net/http"
"os" "os"
"path" "path"
"sort" "sort"

View File

@ -40,12 +40,12 @@ package main
import ( import (
"bufio" "bufio"
"bytes" "bytes"
"encoding/gob"
"errors" "errors"
"go/ast" "go/ast"
"go/parser" "go/parser"
"go/scanner" "go/scanner"
"go/token" "go/token"
"gob"
"index/suffixarray" "index/suffixarray"
"io" "io"
"path/filepath" "path/filepath"

View File

@ -34,10 +34,11 @@ import (
"fmt" "fmt"
"go/ast" "go/ast"
"go/build" "go/build"
"http"
_ "http/pprof" // to serve /debug/pprof/*
"io" "io"
"log" "log"
"net/http"
_ "net/http/pprof" // to serve /debug/pprof/*
"net/url"
"os" "os"
"path" "path"
"path/filepath" "path/filepath"
@ -45,7 +46,6 @@ import (
"runtime" "runtime"
"strings" "strings"
"time" "time"
"url"
) )
const defaultAddr = ":6060" // default webserver address const defaultAddr = ":6060" // default webserver address

View File

@ -14,7 +14,7 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"io" "io"
"scanner" "text/scanner"
) )
type ebnfParser struct { type ebnfParser struct {

View File

@ -15,7 +15,7 @@ import (
"strings" "strings"
"sync" "sync"
"time" "time"
"utf8" "unicode/utf8"
) )
// An RWValue wraps a value and permits mutually exclusive // An RWValue wraps a value and permits mutually exclusive

View File

@ -6,7 +6,6 @@ package main
import ( import (
"bytes" "bytes"
"exec"
"flag" "flag"
"fmt" "fmt"
"go/ast" "go/ast"
@ -16,6 +15,7 @@ import (
"go/token" "go/token"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"sort" "sort"
"strings" "strings"

View File

@ -6,7 +6,6 @@ package main
import ( import (
"bytes" "bytes"
"exec"
"flag" "flag"
"fmt" "fmt"
"go/ast" "go/ast"
@ -17,6 +16,7 @@ import (
"io" "io"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"runtime/pprof" "runtime/pprof"
"strings" "strings"

View File

@ -13,7 +13,7 @@ import (
"reflect" "reflect"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
func initRewrite() { func initRewrite() {

View File

@ -8,12 +8,12 @@ package main
import ( import (
"bytes" "bytes"
"encoding/json"
"errors" "errors"
"exec"
"fmt" "fmt"
"http" "net/http"
"json"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"regexp" "regexp"
"runtime" "runtime"

View File

@ -7,13 +7,13 @@ package main
import ( import (
"bytes" "bytes"
"errors" "errors"
"exec"
"flag" "flag"
"fmt" "fmt"
"go/build" "go/build"
"go/token" "go/token"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"path/filepath" // use for file system paths "path/filepath" // use for file system paths
"regexp" "regexp"
"runtime" "runtime"

View File

@ -12,7 +12,7 @@ import (
"go/build" "go/build"
"path" // use for import paths "path" // use for import paths
"strings" "strings"
"template" "text/template"
) )
// domake builds the package in dir. // domake builds the package in dir.

View File

@ -6,7 +6,6 @@ package main
import ( import (
"bufio" "bufio"
"exec"
"fmt" "fmt"
"go/ast" "go/ast"
"go/build" "go/build"
@ -15,12 +14,13 @@ import (
"go/token" "go/token"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"runtime" "runtime"
"sort" "sort"
"strings" "strings"
"time" "time"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// Environment for commands. // Environment for commands.

View File

@ -20,7 +20,7 @@ import (
"reflect" "reflect"
"strconv" "strconv"
"strings" "strings"
"utf8" "unicode/utf8"
) )
var verbose = flag.Bool("v", false, "verbose") var verbose = flag.Bool("v", false, "verbose")

View File

@ -6,11 +6,11 @@ package main
import ( import (
"bytes" "bytes"
"exec"
"flag" "flag"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os" "os"
"os/exec"
"patch" "patch"
"path/filepath" "path/filepath"
"sort" "sort"

View File

@ -11,25 +11,25 @@ package main
import ( import (
"fmt" "fmt"
"utf8" "unicode/utf8"
) )
func f(byte) {} func f(byte) {}
func g(uint8) {} func g(uint8) {}
func main() { func main() {
var x float64 var x float64
f(x) // ERROR "byte" f(x) // ERROR "byte"
g(x) // ERROR "uint8" g(x) // ERROR "uint8"
// Test across imports. // Test across imports.
var ff fmt.Formatter var ff fmt.Formatter
var fs fmt.State var fs fmt.State
ff.Format(fs, x) // ERROR "rune" ff.Format(fs, x) // ERROR "rune"
utf8.RuneStart(x) // ERROR "byte" utf8.RuneStart(x) // ERROR "byte"
var s utf8.String var s utf8.String
s.At(x) // ERROR "int" s.At(x) // ERROR "int"
} }

View File

@ -38,9 +38,9 @@ POSSIBILITY OF SUCH DAMAGE.
package main package main
import ( import (
"big"
"flag" "flag"
"fmt" "fmt"
"math/big"
) )
var n = flag.Int("n", 27, "number of digits") var n = flag.Int("n", 27, "number of digits")

View File

@ -18,7 +18,7 @@ import (
"fmt" "fmt"
"io" "io"
"os" "os"
"template" "text/template"
) )
func main() { func main() {

View File

@ -9,14 +9,14 @@
package main package main
import ( import (
"cmath"
"fmt" "fmt"
"math" "math"
"math/cmplx"
) )
type Test struct{ type Test struct {
f, g complex128 f, g complex128
out complex128 out complex128
} }
var nan = math.NaN() var nan = math.NaN()
@ -25,9 +25,9 @@ var negzero = math.Copysign(0, -1)
func calike(a, b complex128) bool { func calike(a, b complex128) bool {
switch { switch {
case cmath.IsInf(a) && cmath.IsInf(b): case cmplx.IsInf(a) && cmplx.IsInf(b):
return true return true
case cmath.IsNaN(a) && cmath.IsNaN(b): case cmplx.IsNaN(a) && cmplx.IsNaN(b):
return true return true
} }
return a == b return a == b
@ -36,7 +36,7 @@ func calike(a, b complex128) bool {
func main() { func main() {
bad := false bad := false
for _, t := range tests { for _, t := range tests {
x := t.f/t.g x := t.f / t.g
if !calike(x, t.out) { if !calike(x, t.out) {
if !bad { if !bad {
fmt.Printf("BUG\n") fmt.Printf("BUG\n")

View File

@ -12,14 +12,14 @@ import (
"go/ast" "go/ast"
"go/parser" "go/parser"
"go/token" "go/token"
"log"
"net/http"
_ "net/http/pprof"
"os" "os"
"path" "path"
"runtime" "runtime"
"strings" "strings"
"time" "time"
"http"
_ "http/pprof"
"log"
) )
var serve = flag.String("serve", "", "serve http on this address at end") var serve = flag.String("serve", "", "serve http on this address at end")

View File

@ -6,7 +6,7 @@
package main package main
import "rand" import "math/rand"
const Count = 1e5 const Count = 1e5

View File

@ -6,7 +6,7 @@
package main package main
import "rand" import "math/rand"
const Count = 1e5 const Count = 1e5

View File

@ -10,7 +10,7 @@ package main
import ( import (
"flag" "flag"
"rand" "math/rand"
"runtime" "runtime"
"unsafe" "unsafe"
) )

View File

@ -9,7 +9,7 @@ package main
import ( import (
"fmt" "fmt"
"os" "os"
"utf8" "unicode/utf8"
) )
func main() { func main() {

View File

@ -6,7 +6,7 @@
package main package main
import "utf8" import "unicode/utf8"
func main() { func main() {
var chars [6]rune var chars [6]rune