lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

Commit 30aa701f authored by Rob Pike's avatar Rob Pike

renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*

R=rsc
CC=golang-dev
https://golang.org/cl/5358041
parent 6ab6c49f
...@@ -7,7 +7,7 @@ package zip ...@@ -7,7 +7,7 @@ package zip
import ( import (
"bytes" "bytes"
"io/ioutil" "io/ioutil"
"rand" "math/rand"
"testing" "testing"
) )
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
"bytes" "bytes"
"io" "io"
"strconv" "strconv"
"utf8" "unicode/utf8"
) )
const ( const (
......
...@@ -14,7 +14,7 @@ import ( ...@@ -14,7 +14,7 @@ import (
"strings" "strings"
"testing" "testing"
"testing/iotest" "testing/iotest"
"utf8" "unicode/utf8"
) )
// Reads from a reader and rot13s the result. // Reads from a reader and rot13s the result.
......
...@@ -9,7 +9,7 @@ package bytes ...@@ -9,7 +9,7 @@ package bytes
import ( import (
"errors" "errors"
"io" "io"
"utf8" "unicode/utf8"
) )
// A Buffer is a variable-sized buffer of bytes with Read and Write methods. // A Buffer is a variable-sized buffer of bytes with Read and Write methods.
......
...@@ -7,9 +7,9 @@ package bytes_test ...@@ -7,9 +7,9 @@ package bytes_test
import ( import (
. "bytes" . "bytes"
"io" "io"
"rand" "math/rand"
"testing" "testing"
"utf8" "unicode/utf8"
) )
const N = 10000 // make this bigger for a larger (and slower) test const N = 10000 // make this bigger for a larger (and slower) test
......
...@@ -8,7 +8,7 @@ package bytes ...@@ -8,7 +8,7 @@ package bytes
import ( import (
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// Compare returns an integer comparing the two byte arrays lexicographically. // Compare returns an integer comparing the two byte arrays lexicographically.
......
...@@ -9,7 +9,7 @@ import ( ...@@ -9,7 +9,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
func eq(a, b []string) bool { func eq(a, b []string) bool {
......
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
package dsa package dsa
import ( import (
"big"
"errors" "errors"
"io" "io"
"math/big"
) )
// Parameters represents the domain parameters for a key. These parameters can // Parameters represents the domain parameters for a key. These parameters can
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
package dsa package dsa
import ( import (
"big"
"crypto/rand" "crypto/rand"
"math/big"
"testing" "testing"
) )
......
...@@ -13,9 +13,9 @@ package ecdsa ...@@ -13,9 +13,9 @@ package ecdsa
// http://www.secg.org/download/aid-780/sec1-v2.pdf // http://www.secg.org/download/aid-780/sec1-v2.pdf
import ( import (
"big"
"crypto/elliptic" "crypto/elliptic"
"io" "io"
"math/big"
) )
// PublicKey represents an ECDSA public key. // PublicKey represents an ECDSA public key.
......
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
package ecdsa package ecdsa
import ( import (
"big"
"crypto/elliptic" "crypto/elliptic"
"crypto/rand" "crypto/rand"
"crypto/sha1" "crypto/sha1"
"encoding/hex" "encoding/hex"
"math/big"
"testing" "testing"
) )
......
...@@ -14,8 +14,8 @@ package elliptic ...@@ -14,8 +14,8 @@ package elliptic
// reverse the transform than to operate in affine coordinates. // reverse the transform than to operate in affine coordinates.
import ( import (
"big"
"io" "io"
"math/big"
"sync" "sync"
) )
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
package elliptic package elliptic
import ( import (
"big"
"crypto/rand" "crypto/rand"
"fmt" "fmt"
"math/big"
"testing" "testing"
) )
......
...@@ -8,12 +8,12 @@ ...@@ -8,12 +8,12 @@
package ocsp package ocsp
import ( import (
"asn1"
"crypto" "crypto"
"crypto/rsa" "crypto/rsa"
_ "crypto/sha1" _ "crypto/sha1"
"crypto/x509" "crypto/x509"
"crypto/x509/pkix" "crypto/x509/pkix"
"encoding/asn1"
"time" "time"
) )
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
package elgamal package elgamal
import ( import (
"big"
"crypto/rand" "crypto/rand"
"crypto/subtle" "crypto/subtle"
"errors" "errors"
"io" "io"
"math/big"
) )
// PublicKey represents an ElGamal public key. // PublicKey represents an ElGamal public key.
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
package elgamal package elgamal
import ( import (
"big"
"bytes" "bytes"
"crypto/rand" "crypto/rand"
"math/big"
"testing" "testing"
) )
......
...@@ -5,13 +5,13 @@ ...@@ -5,13 +5,13 @@
package packet package packet
import ( import (
"big"
"crypto/openpgp/elgamal" "crypto/openpgp/elgamal"
error_ "crypto/openpgp/error" error_ "crypto/openpgp/error"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"encoding/binary" "encoding/binary"
"io" "io"
"math/big"
"strconv" "strconv"
) )
......
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
package packet package packet
import ( import (
"big"
"bytes" "bytes"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"fmt" "fmt"
"math/big"
"testing" "testing"
) )
......
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
package packet package packet
import ( import (
"big"
"crypto/aes" "crypto/aes"
"crypto/cast5" "crypto/cast5"
"crypto/cipher" "crypto/cipher"
error_ "crypto/openpgp/error" error_ "crypto/openpgp/error"
"io" "io"
"math/big"
) )
// readFull is the same as io.ReadFull except that reading zero bytes returns // readFull is the same as io.ReadFull except that reading zero bytes returns
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
package packet package packet
import ( import (
"big"
"bytes" "bytes"
"crypto/cipher" "crypto/cipher"
"crypto/dsa" "crypto/dsa"
...@@ -16,6 +15,7 @@ import ( ...@@ -16,6 +15,7 @@ import (
"crypto/sha1" "crypto/sha1"
"io" "io"
"io/ioutil" "io/ioutil"
"math/big"
"strconv" "strconv"
) )
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
package packet package packet
import ( import (
"big"
"crypto/dsa" "crypto/dsa"
"crypto/openpgp/elgamal" "crypto/openpgp/elgamal"
error_ "crypto/openpgp/error" error_ "crypto/openpgp/error"
...@@ -15,6 +14,7 @@ import ( ...@@ -15,6 +14,7 @@ import (
"fmt" "fmt"
"hash" "hash"
"io" "io"
"math/big"
"strconv" "strconv"
) )
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
package rand package rand
import ( import (
"big"
"io" "io"
"math/big"
"os" "os"
) )
......
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
package rsa package rsa
import ( import (
"big"
"crypto" "crypto"
"crypto/subtle" "crypto/subtle"
"errors" "errors"
"io" "io"
"math/big"
) )
// This file implements encryption and decryption using PKCS#1 v1.5 padding. // This file implements encryption and decryption using PKCS#1 v1.5 padding.
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
package rsa package rsa
import ( import (
"big"
"bytes" "bytes"
"crypto" "crypto"
"crypto/rand" "crypto/rand"
...@@ -13,6 +12,7 @@ import ( ...@@ -13,6 +12,7 @@ import (
"encoding/base64" "encoding/base64"
"encoding/hex" "encoding/hex"
"io" "io"
"math/big"
"testing" "testing"
"testing/quick" "testing/quick"
) )
......
...@@ -8,12 +8,12 @@ package rsa ...@@ -8,12 +8,12 @@ package rsa
// TODO(agl): Add support for PSS padding. // TODO(agl): Add support for PSS padding.
import ( import (
"big"
"crypto/rand" "crypto/rand"
"crypto/subtle" "crypto/subtle"
"errors" "errors"
"hash" "hash"
"io" "io"
"math/big"
) )
var bigZero = big.NewInt(0) var bigZero = big.NewInt(0)
......
...@@ -5,10 +5,10 @@ ...@@ -5,10 +5,10 @@
package rsa package rsa
import ( import (
"big"
"bytes" "bytes"
"crypto/rand" "crypto/rand"
"crypto/sha1" "crypto/sha1"
"math/big"
"testing" "testing"
) )
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
package main package main
import ( import (
"big"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/x509" "crypto/x509"
...@@ -16,6 +15,7 @@ import ( ...@@ -16,6 +15,7 @@ import (
"encoding/pem" "encoding/pem"
"flag" "flag"
"log" "log"
"math/big"
"os" "os"
"time" "time"
) )
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package tls package tls
import ( import (
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
"testing/quick" "testing/quick"
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
package tls package tls
import ( import (
"big"
"bytes" "bytes"
"crypto/rsa" "crypto/rsa"
"encoding/hex" "encoding/hex"
"flag" "flag"
"io" "io"
"math/big"
"net" "net"
"strconv" "strconv"
"strings" "strings"
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
package tls package tls
import ( import (
"big"
"crypto" "crypto"
"crypto/elliptic" "crypto/elliptic"
"crypto/md5" "crypto/md5"
...@@ -14,6 +13,7 @@ import ( ...@@ -14,6 +13,7 @@ import (
"crypto/x509" "crypto/x509"
"errors" "errors"
"io" "io"
"math/big"
) )
// rsaKeyAgreement implements the standard TLS key agreement where the client // rsaKeyAgreement implements the standard TLS key agreement where the client
......
...@@ -5,10 +5,10 @@ ...@@ -5,10 +5,10 @@
package x509 package x509
import ( import (
"asn1"
"big"
"crypto/rsa" "crypto/rsa"
"encoding/asn1"
"errors" "errors"
"math/big"
) )
// pkcs1PrivateKey is a structure which mirrors the PKCS#1 ASN.1 for an RSA private key. // pkcs1PrivateKey is a structure which mirrors the PKCS#1 ASN.1 for an RSA private key.
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
package pkix package pkix
import ( import (
"asn1" "encoding/asn1"
"big" "math/big"
"time" "time"
) )
......
...@@ -6,17 +6,17 @@ ...@@ -6,17 +6,17 @@
package x509 package x509
import ( import (
"asn1"
"big"
"bytes" "bytes"
"crypto" "crypto"
"crypto/dsa" "crypto/dsa"
"crypto/rsa" "crypto/rsa"
"crypto/sha1" "crypto/sha1"
"crypto/x509/pkix" "crypto/x509/pkix"
"encoding/asn1"
"encoding/pem" "encoding/pem"
"errors" "errors"
"io" "io"
"math/big"
"time" "time"
) )
......
...@@ -5,16 +5,16 @@ ...@@ -5,16 +5,16 @@
package x509 package x509
import ( import (
"asn1"
"big"
"bytes" "bytes"
"crypto/dsa" "crypto/dsa"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/x509/pkix" "crypto/x509/pkix"
"encoding/asn1"
"encoding/base64" "encoding/base64"
"encoding/hex" "encoding/hex"
"encoding/pem" "encoding/pem"
"math/big"
"testing" "testing"
"time" "time"
) )
......
...@@ -20,8 +20,8 @@ package asn1 ...@@ -20,8 +20,8 @@ package asn1
// everything by any means. // everything by any means.
import ( import (
"big"
"fmt" "fmt"
"math/big"
"reflect" "reflect"
"time" "time"
) )
......
...@@ -5,10 +5,10 @@ ...@@ -5,10 +5,10 @@
package asn1 package asn1
import ( import (
"big"
"bytes" "bytes"
"fmt" "fmt"
"io" "io"
"math/big"
"reflect" "reflect"
"time" "time"
) )
......
...@@ -9,7 +9,7 @@ import ( ...@@ -9,7 +9,7 @@ import (
"io" "io"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// A Writer writes records to a CSV encoded file. // A Writer writes records to a CSV encoded file.
......
...@@ -3,8 +3,8 @@ package main ...@@ -3,8 +3,8 @@ package main
// Need to compile package gob with debug.go to build this program. // Need to compile package gob with debug.go to build this program.
import ( import (
"encoding/gob"
"fmt" "fmt"
"gob"
"os" "os"
) )
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
"reflect" "reflect"
"sync" "sync"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// userTypeInfo stores the information associated with a type the user has handed // userTypeInfo stores the information associated with a type the user has handed
......
...@@ -15,8 +15,8 @@ import ( ...@@ -15,8 +15,8 @@ import (
"strconv" "strconv"
"strings" "strings"
"unicode" "unicode"
"utf16" "unicode/utf16"
"utf8" "unicode/utf8"
) )
// Unmarshal parses the JSON-encoded data and stores the result // Unmarshal parses the JSON-encoded data and stores the result
......
...@@ -17,7 +17,7 @@ import ( ...@@ -17,7 +17,7 @@ import (
"sort" "sort"
"strconv" "strconv"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// Marshal returns the JSON encoding of v. // Marshal returns the JSON encoding of v.
......
...@@ -7,7 +7,7 @@ package json ...@@ -7,7 +7,7 @@ package json
import ( import (
"bytes" "bytes"
"math" "math"
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
) )
......
...@@ -13,7 +13,7 @@ import ( ...@@ -13,7 +13,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// BUG(rsc): Mapping between XML elements and data structures is inherently flawed: // BUG(rsc): Mapping between XML elements and data structures is inherently flawed:
......
...@@ -21,7 +21,7 @@ import ( ...@@ -21,7 +21,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// A SyntaxError represents a syntax error in the XML input stream. // A SyntaxError represents a syntax error in the XML input stream.
......
...@@ -25,9 +25,9 @@ package ebnf ...@@ -25,9 +25,9 @@ package ebnf
import ( import (
"errors" "errors"
"fmt" "fmt"
"scanner" "text/scanner"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
......
...@@ -6,8 +6,8 @@ package ebnf ...@@ -6,8 +6,8 @@ package ebnf
import ( import (
"io" "io"
"scanner"
"strconv" "strconv"
"text/scanner"
) )
type parser struct { type parser struct {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
package norm package norm
import "utf8" import "unicode/utf8"
const ( const (
maxCombiningChars = 30 maxCombiningChars = 30
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
package norm package norm
import "utf8" import "unicode/utf8"
type input interface { type input interface {
skipASCII(p int) int skipASCII(p int) int
......
...@@ -12,9 +12,9 @@ import ( ...@@ -12,9 +12,9 @@ import (
"bytes" "bytes"
"flag" "flag"
"fmt" "fmt"
"http"
"io" "io"
"log" "log"
"net/http"
"os" "os"
"regexp" "regexp"
"strconv" "strconv"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// Package norm contains types and functions for normalizing Unicode strings. // Package norm contains types and functions for normalizing Unicode strings.
package norm package norm
import "utf8" import "unicode/utf8"
// A Form denotes a canonical representation of Unicode code points. // A Form denotes a canonical representation of Unicode code points.
// The Unicode-defined normalization and equivalence forms are: // The Unicode-defined normalization and equivalence forms are:
......
...@@ -10,9 +10,9 @@ import ( ...@@ -10,9 +10,9 @@ import (
"exp/norm" "exp/norm"
"flag" "flag"
"fmt" "fmt"
"http"
"io" "io"
"log" "log"
"net/http"
"os" "os"
"path" "path"
"regexp" "regexp"
...@@ -20,7 +20,7 @@ import ( ...@@ -20,7 +20,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"time" "time"
"utf8" "unicode/utf8"
) )
func main() { func main() {
......
...@@ -2,7 +2,7 @@ package norm ...@@ -2,7 +2,7 @@ package norm
import ( import (
"testing" "testing"
"utf8" "unicode/utf8"
) )
// Test data is located in triedata_test.go; generated by maketesttables. // Test data is located in triedata_test.go; generated by maketesttables.
......
...@@ -14,7 +14,7 @@ import ( ...@@ -14,7 +14,7 @@ import (
"fmt" "fmt"
"hash/crc32" "hash/crc32"
"log" "log"
"utf8" "unicode/utf8"
) )
const blockSize = 64 const blockSize = 64
......
...@@ -7,8 +7,8 @@ package spdy ...@@ -7,8 +7,8 @@ package spdy
import ( import (
"compress/zlib" "compress/zlib"
"encoding/binary" "encoding/binary"
"http"
"io" "io"
"net/http"
"strings" "strings"
) )
......
...@@ -6,8 +6,8 @@ package spdy ...@@ -6,8 +6,8 @@ package spdy
import ( import (
"bytes" "bytes"
"http"
"io" "io"
"net/http"
"reflect" "reflect"
"testing" "testing"
) )
......
...@@ -7,8 +7,8 @@ package spdy ...@@ -7,8 +7,8 @@ package spdy
import ( import (
"bytes" "bytes"
"compress/zlib" "compress/zlib"
"http"
"io" "io"
"net/http"
) )
// Data Frame Format // Data Frame Format
......
...@@ -6,8 +6,8 @@ package spdy ...@@ -6,8 +6,8 @@ package spdy
import ( import (
"encoding/binary" "encoding/binary"
"http"
"io" "io"
"net/http"
"strings" "strings"
) )
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
package ssh package ssh
import ( import (
"big"
"crypto" "crypto"
"crypto/rand" "crypto/rand"
"errors" "errors"
"fmt" "fmt"
"io" "io"
"math/big"
"net" "net"
"sync" "sync"
) )
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package ssh package ssh
import ( import (
"big" "math/big"
"strconv" "strconv"
"sync" "sync"
) )
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
package ssh package ssh
import ( import (
"big"
"bytes" "bytes"
"io" "io"
"math/big"
"reflect" "reflect"
) )
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
package ssh package ssh
import ( import (
"big" "math/big"
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
"testing/quick" "testing/quick"
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
package ssh package ssh
import ( import (
"big"
"bytes" "bytes"
"crypto" "crypto"
"crypto/rand" "crypto/rand"
...@@ -14,6 +13,7 @@ import ( ...@@ -14,6 +13,7 @@ import (
"encoding/pem" "encoding/pem"
"errors" "errors"
"io" "io"
"math/big"
"net" "net"
"sync" "sync"
) )
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
package types package types
import ( import (
"big"
"go/token" "go/token"
"math/big"
"strconv" "strconv"
) )
......
...@@ -8,17 +8,17 @@ ...@@ -8,17 +8,17 @@
package types package types
import ( import (
"big"
"errors" "errors"
"fmt" "fmt"
"go/ast" "go/ast"
"go/token" "go/token"
"io" "io"
"math/big"
"os" "os"
"path/filepath" "path/filepath"
"runtime" "runtime"
"scanner"
"strconv" "strconv"
"text/scanner"
) )
const trace = false // set to true for debugging const trace = false // set to true for debugging
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
package types package types
import ( import (
"exec"
"go/ast" "go/ast"
"io/ioutil" "io/ioutil"
"os/exec"
"path/filepath" "path/filepath"
"runtime" "runtime"
"strings" "strings"
......
...@@ -23,10 +23,10 @@ package expvar ...@@ -23,10 +23,10 @@ package expvar
import ( import (
"bytes" "bytes"
"encoding/json"
"fmt" "fmt"
"http"
"json"
"log" "log"
"net/http"
"os" "os"
"runtime" "runtime"
"strconv" "strconv"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package expvar package expvar
import ( import (
"json" "encoding/json"
"testing" "testing"
) )
......
...@@ -8,7 +8,7 @@ import ( ...@@ -8,7 +8,7 @@ import (
"bytes" "bytes"
"strconv" "strconv"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
const ( const (
......
...@@ -12,7 +12,7 @@ import ( ...@@ -12,7 +12,7 @@ import (
"reflect" "reflect"
"sync" "sync"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// Some constants in the form of bytes, to avoid string overhead. // Some constants in the form of bytes, to avoid string overhead.
......
...@@ -14,7 +14,7 @@ import ( ...@@ -14,7 +14,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// runeUnreader is the interface to something that can unread runes. // runeUnreader is the interface to something that can unread runes.
......
...@@ -15,7 +15,7 @@ import ( ...@@ -15,7 +15,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"testing" "testing"
"utf8" "unicode/utf8"
) )
type ScanTest struct { type ScanTest struct {
......
...@@ -10,7 +10,7 @@ package ast ...@@ -10,7 +10,7 @@ package ast
import ( import (
"go/token" "go/token"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
......
...@@ -8,9 +8,9 @@ package build ...@@ -8,9 +8,9 @@ package build
import ( import (
"bytes" "bytes"
"errors" "errors"
"exec"
"fmt" "fmt"
"os" "os"
"os/exec"
"path/filepath" "path/filepath"
"regexp" "regexp"
"runtime" "runtime"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package build package build
import ( import (
"exec" "os/exec"
"path/filepath" "path/filepath"
"reflect" "reflect"
"runtime" "runtime"
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
"io" "io"
"regexp" "regexp"
"strings" "strings"
"template" // for HTMLEscape "text/template" // for HTMLEscape
) )
func isWhitespace(ch byte) bool { return ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r' } func isWhitespace(ch byte) bool { return ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r' }
......
...@@ -10,7 +10,7 @@ import ( ...@@ -10,7 +10,7 @@ import (
"go/ast" "go/ast"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
type Example struct { type Example struct {
......
...@@ -13,7 +13,7 @@ import ( ...@@ -13,7 +13,7 @@ import (
"io" "io"
"os" "os"
"path/filepath" "path/filepath"
"tabwriter" "text/tabwriter"
) )
const debug = false // enable for debugging const debug = false // enable for debugging
......
...@@ -27,7 +27,7 @@ import ( ...@@ -27,7 +27,7 @@ import (
"path/filepath" "path/filepath"
"strconv" "strconv"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// A Scanner holds the scanner's internal state while processing // A Scanner holds the scanner's internal state while processing
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package token package token
import ( import (
"gob" "encoding/gob"
"io" "io"
) )
......
...@@ -6,7 +6,7 @@ package html ...@@ -6,7 +6,7 @@ package html
import ( import (
"testing" "testing"
"utf8" "unicode/utf8"
) )
func TestEntityLength(t *testing.T) { func TestEntityLength(t *testing.T) {
......
...@@ -7,7 +7,7 @@ package html ...@@ -7,7 +7,7 @@ package html
import ( import (
"bytes" "bytes"
"strings" "strings"
"utf8" "unicode/utf8"
) )
// These replacements permit compatibility with old numeric entities that // These replacements permit compatibility with old numeric entities that
......
...@@ -10,8 +10,8 @@ import ( ...@@ -10,8 +10,8 @@ import (
"image/color" "image/color"
"image/png" "image/png"
"io/ioutil" "io/ioutil"
"math/rand"
"os" "os"
"rand"
"testing" "testing"
) )
......
...@@ -6,7 +6,7 @@ package suffixarray ...@@ -6,7 +6,7 @@ package suffixarray
import ( import (
"bytes" "bytes"
"rand" "math/rand"
"regexp" "regexp"
"sort" "sort"
"strings" "strings"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment