R=r, rsc
https://golang.org/cl/161058
type CorruptInputError int64
func (e CorruptInputError) String() string {
- return "illegal ascii85 data at input byte" + strconv.Itoa64(int64(e))
+ return "illegal ascii85 data at input byte " + strconv.Itoa64(int64(e))
}
// Decode decodes src into dst, returning both the number
type CorruptInputError int64
func (e CorruptInputError) String() string {
- return "illegal base64 data at input byte" + strconv.Itoa64(int64(e))
+ return "illegal base64 data at input byte " + strconv.Itoa64(int64(e))
}
// decode is like Decode but returns an additional 'end' value, which
type CorruptInputError int64
func (e CorruptInputError) String() string {
- return "illegal git85 data at input byte" + strconv.Itoa64(int64(e))
+ return "illegal git85 data at input byte " + strconv.Itoa64(int64(e))
}
const encode = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~"