Movatterモバイル変換


[0]ホーム

URL:


homepage

Issue4495

This issue trackerhas been migrated toGitHub, and is currentlyread-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title:Fix signed/unsigned warning
Type:compile errorStage:
Components:Interpreter CoreVersions:Python 3.0
process
Status:closedResolution:fixed
Dependencies:Superseder:
Assigned To: barryNosy List: barry, rhettinger
Priority:normalKeywords:

Created on2008-12-02 20:53 byrhettinger, last changed2022-04-11 14:56 byadmin. This issue is nowclosed.

Messages (2)
msg76781 -(view)Author: Raymond Hettinger (rhettinger)*(Python committer)Date: 2008-12-02 20:53
C:\py30>svn diffIndex:Python/traceback.c===================================================================---Python/traceback.c  (revision 67476)+++Python/traceback.c  (working copy)@@ -171,7 +171,7 @@                if (!PyUnicode_Check(v))                        continue;                path = _PyUnicode_AsStringAndSize(v, &len);-               if (len + 1 + taillen >= (Py_ssize_t)namelen - 1)+               if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen- 1)                        continue; /* Too long */                strcpy(namebuf, path);                if (strlen(namebuf) != len)
msg76782 -(view)Author: Raymond Hettinger (rhettinger)*(Python committer)Date: 2008-12-02 21:00
Fixedr67477.
History
DateUserActionArgs
2022-04-11 14:56:42adminsetgithub: 48745
2008-12-02 21:00:34rhettingersetstatus: open -> closed
resolution: fixed
messages: +msg76782
2008-12-02 20:53:08rhettingercreate
Supported byThe Python Software Foundation,
Powered byRoundup
Copyright © 1990-2022,Python Software Foundation
Legal Statements

[8]ページ先頭

©2009-2026 Movatter.jp