← 返回首页
Wrong sign placement in PyUnicode_FromFormat · Issue #95504 · python/cpython · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Wrong sign placement in PyUnicode_FromFormat #95504

New issue
New issue

Description

Bug report

When specifying width or precision with a negative number the sign ignores that and sticks to the number.
Width specifies the minimum output width, so if the zero flag is set the sign should be the first character of the width padding, if the zero flag is not set the last character of the padding.
Precision specifies the number of digits, so the sign should be placed before precision count digits.

PyUnicode_FromFormat( "%05d", -123); // "0-123" should be "-0123" PyUnicode_FromFormat( "%.5d", -123); // "0-123" should be "-00123" PyUnicode_FromFormat( "%7.5d", -123); // " 0-123" should be " -00123" PyUnicode_FromFormat("%07.5d", -123); // "000-123" should be "-000123"

Your environment

  • CPython versions tested on: main branch

Metadata

Metadata

Assignees

Labels

type-bugAn unexpected behavior, bug, or error

Fields

No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

  • Open in GitHub Copilot app

Footer

© 2026 GitHub, Inc.