Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x/text/number, x/text/message: number formatting order of magnitude error #31254

Open
leith1972 opened this issue Apr 4, 2019 · 1 comment
Open
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@leith1972
Copy link

What version of Go are you using (go version)?

$ go version
go version go1.12.1 linux/amd64

Does this issue reproduce with the latest release?

yes

What operating system and processor architecture are you using (go env)?

go env Output
$ go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/leith/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/leith/go"
GOPROXY=""
GORACE=""
GOROOT="/usr/local/go"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build707188231=/tmp/go-build -gno-record-gcc-switches"

What did you do?

package main

import (
        "fmt"
        "golang.org/x/text/message"
        "golang.org/x/text/number"
)

func main() {
        p := message.NewPrinter(message.MatchLanguage("en"))
        n1 := 1.99999
        n2 := 0.99999
        n3 := 999.9999
        fmt.Println(p.Sprintf("%v", number.Decimal(n1, number.Precision(4), number.NoSeparator())))
        fmt.Println(p.Sprintf("%v", number.Decimal(n2, number.Precision(4), number.NoSeparator())))
        fmt.Println(p.Sprintf("%v", number.Decimal(n3, number.Precision(4), number.NoSeparator())))
}

What did you expect to see?

2
1
1000

What did you see instead?

2
0.1
100

numbers such as 0.99999 are formatted an order of magnitude too small.

@gopherbot gopherbot added this to the Unreleased milestone Apr 4, 2019
@andybons andybons changed the title x/text/number x/text/message - Number formatting order of magnitude error x/text/number, x/text/message: number formatting order of magnitude error Apr 4, 2019
@andybons andybons added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Apr 4, 2019
@andybons
Copy link
Member

andybons commented Apr 4, 2019

@mpvl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

3 participants