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

R=rsc
CC=golang-dev
https://golang.org/cl/5358041
This commit is contained in:
Rob Pike 2011-11-08 15:40:58 -08:00
parent 6ab6c49fce
commit 30aa701fec
83 changed files with 94 additions and 94 deletions

View file

@ -7,7 +7,7 @@ package zip
import ( import (
"bytes" "bytes"
"io/ioutil" "io/ioutil"
"rand" "math/rand"
"testing" "testing"
) )

View file

@ -11,7 +11,7 @@ import (
"bytes" "bytes"
"io" "io"
"strconv" "strconv"
"utf8" "unicode/utf8"
) )
const ( const (

View file

@ -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.

View file

@ -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.

View file

@ -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

View file

@ -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.

View file

@ -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 {

View file

@ -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

View file

@ -5,8 +5,8 @@
package dsa package dsa
import ( import (
"big"
"crypto/rand" "crypto/rand"
"math/big"
"testing" "testing"
) )

View file

@ -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.

View file

@ -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"
) )

View file

@ -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"
) )

View file

@ -5,9 +5,9 @@
package elliptic package elliptic
import ( import (
"big"
"crypto/rand" "crypto/rand"
"fmt" "fmt"
"math/big"
"testing" "testing"
) )

View file

@ -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"
) )

View file

@ -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.

View file

@ -5,9 +5,9 @@
package elgamal package elgamal
import ( import (
"big"
"bytes" "bytes"
"crypto/rand" "crypto/rand"
"math/big"
"testing" "testing"
) )

View file

@ -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"
) )

View file

@ -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"
) )

View file

@ -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

View file

@ -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 (
"crypto/sha1" "crypto/sha1"
"io" "io"
"io/ioutil" "io/ioutil"
"math/big"
"strconv" "strconv"
) )

View file

@ -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 (
"fmt" "fmt"
"hash" "hash"
"io" "io"
"math/big"
"strconv" "strconv"
) )

View file

@ -5,8 +5,8 @@
package rand package rand
import ( import (
"big"
"io" "io"
"math/big"
"os" "os"
) )

View file

@ -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.

View file

@ -5,7 +5,6 @@
package rsa package rsa
import ( import (
"big"
"bytes" "bytes"
"crypto" "crypto"
"crypto/rand" "crypto/rand"
@ -13,6 +12,7 @@ import (
"encoding/base64" "encoding/base64"
"encoding/hex" "encoding/hex"
"io" "io"
"math/big"
"testing" "testing"
"testing/quick" "testing/quick"
) )

View file

@ -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)

View file

@ -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"
) )

View file

@ -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 (
"encoding/pem" "encoding/pem"
"flag" "flag"
"log" "log"
"math/big"
"os" "os"
"time" "time"
) )

View file

@ -5,7 +5,7 @@
package tls package tls
import ( import (
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
"testing/quick" "testing/quick"

View file

@ -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"

View file

@ -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 (
"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

View file

@ -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.

View file

@ -7,8 +7,8 @@
package pkix package pkix
import ( import (
"asn1" "encoding/asn1"
"big" "math/big"
"time" "time"
) )

View file

@ -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"
) )

View file

@ -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"
) )

View file

@ -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"
) )

View file

@ -5,10 +5,10 @@
package asn1 package asn1
import ( import (
"big"
"bytes" "bytes"
"fmt" "fmt"
"io" "io"
"math/big"
"reflect" "reflect"
"time" "time"
) )

View file

@ -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.

View file

@ -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"
) )

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -7,7 +7,7 @@ package json
import ( import (
"bytes" "bytes"
"math" "math"
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
) )

View file

@ -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:

View file

@ -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.

View file

@ -25,9 +25,9 @@ package ebnf
import ( import (
"errors" "errors"
"fmt" "fmt"
"scanner" "text/scanner"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View file

@ -6,8 +6,8 @@ package ebnf
import ( import (
"io" "io"
"scanner"
"strconv" "strconv"
"text/scanner"
) )
type parser struct { type parser struct {

View file

@ -4,7 +4,7 @@
package norm package norm
import "utf8" import "unicode/utf8"
const ( const (
maxCombiningChars = 30 maxCombiningChars = 30

View file

@ -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

View file

@ -12,9 +12,9 @@ import (
"bytes" "bytes"
"flag" "flag"
"fmt" "fmt"
"http"
"io" "io"
"log" "log"
"net/http"
"os" "os"
"regexp" "regexp"
"strconv" "strconv"

View file

@ -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:

View file

@ -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 (
"strconv" "strconv"
"strings" "strings"
"time" "time"
"utf8" "unicode/utf8"
) )
func main() { func main() {

View file

@ -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.

View file

@ -14,7 +14,7 @@ import (
"fmt" "fmt"
"hash/crc32" "hash/crc32"
"log" "log"
"utf8" "unicode/utf8"
) )
const blockSize = 64 const blockSize = 64

View file

@ -7,8 +7,8 @@ package spdy
import ( import (
"compress/zlib" "compress/zlib"
"encoding/binary" "encoding/binary"
"http"
"io" "io"
"net/http"
"strings" "strings"
) )

View file

@ -6,8 +6,8 @@ package spdy
import ( import (
"bytes" "bytes"
"http"
"io" "io"
"net/http"
"reflect" "reflect"
"testing" "testing"
) )

View file

@ -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

View file

@ -6,8 +6,8 @@ package spdy
import ( import (
"encoding/binary" "encoding/binary"
"http"
"io" "io"
"net/http"
"strings" "strings"
) )

View file

@ -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"
) )

View file

@ -5,7 +5,7 @@
package ssh package ssh
import ( import (
"big" "math/big"
"strconv" "strconv"
"sync" "sync"
) )

View file

@ -5,9 +5,9 @@
package ssh package ssh
import ( import (
"big"
"bytes" "bytes"
"io" "io"
"math/big"
"reflect" "reflect"
) )

View file

@ -5,8 +5,8 @@
package ssh package ssh
import ( import (
"big" "math/big"
"rand" "math/rand"
"reflect" "reflect"
"testing" "testing"
"testing/quick" "testing/quick"

View file

@ -5,7 +5,6 @@
package ssh package ssh
import ( import (
"big"
"bytes" "bytes"
"crypto" "crypto"
"crypto/rand" "crypto/rand"
@ -14,6 +13,7 @@ import (
"encoding/pem" "encoding/pem"
"errors" "errors"
"io" "io"
"math/big"
"net" "net"
"sync" "sync"
) )

View file

@ -7,8 +7,8 @@
package types package types
import ( import (
"big"
"go/token" "go/token"
"math/big"
"strconv" "strconv"
) )

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -5,7 +5,7 @@
package expvar package expvar
import ( import (
"json" "encoding/json"
"testing" "testing"
) )

View file

@ -8,7 +8,7 @@ import (
"bytes" "bytes"
"strconv" "strconv"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
const ( const (

View file

@ -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.

View file

@ -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.

View file

@ -15,7 +15,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"testing" "testing"
"utf8" "unicode/utf8"
) )
type ScanTest struct { type ScanTest struct {

View file

@ -10,7 +10,7 @@ package ast
import ( import (
"go/token" "go/token"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View file

@ -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"

View file

@ -5,7 +5,7 @@
package build package build
import ( import (
"exec" "os/exec"
"path/filepath" "path/filepath"
"reflect" "reflect"
"runtime" "runtime"

View file

@ -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' }

View file

@ -10,7 +10,7 @@ import (
"go/ast" "go/ast"
"strings" "strings"
"unicode" "unicode"
"utf8" "unicode/utf8"
) )
type Example struct { type Example struct {

View file

@ -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

View file

@ -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

View file

@ -5,7 +5,7 @@
package token package token
import ( import (
"gob" "encoding/gob"
"io" "io"
) )

View file

@ -6,7 +6,7 @@ package html
import ( import (
"testing" "testing"
"utf8" "unicode/utf8"
) )
func TestEntityLength(t *testing.T) { func TestEntityLength(t *testing.T) {

View file

@ -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

View file

@ -10,8 +10,8 @@ import (
"image/color" "image/color"
"image/png" "image/png"
"io/ioutil" "io/ioutil"
"math/rand"
"os" "os"
"rand"
"testing" "testing"
) )

View file

@ -6,7 +6,7 @@ package suffixarray
import ( import (
"bytes" "bytes"
"rand" "math/rand"
"regexp" "regexp"
"sort" "sort"
"strings" "strings"