Skip to content

cmd/gofmt: canonicalize octal literals to the '0o' form #33363

@cespare

Description

@cespare

Go 1.13 adds the 0o form for octal numbers: instead of writing 0644 we can write 0o644. Gofmt is also changing to canonicalize 0O to 0o.

We should go one step further and have gofmt canonicalize the old style of octal literals to the 0o style: 0644 should be changed to 0o644.

Octal numbers are a surprising feature for programmers coming from a language that does not have them, or where they are rarely used. It's unintuitive that adding a leading zero to an integer changes its meaning. Some modern languages, such as Rust and Swift, have opted to omit the 0-prefix syntax altogether and only support the 0o form. Removing the 0-prefix syntax from Go would be too disruptive now, but we should strongly encourage use of the 0o form via this gofmt rule.

As a separate justification, with the new octal syntax there will be two different octal styles the programmer can choose. It's better for gofmt to remove this choice and enforce a single standard.

This will cause some churn in code bases, mostly around os.OpenFile and similar calls, but I believe the change is well worth it.

Metadata

Metadata

Assignees

No one assigned

    Labels

    NeedsDecisionFeedback is required from experts, contributors, and/or the community before a change can be made.

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions