This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2008年07月06日 16:06 by vstinner, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| locale_strcoll_rel1.patch | vstinner, 2008年07月06日 16:06 | Patch fixing refcount in strcoll error | ||
| Messages (3) | |||
|---|---|---|---|
| msg69336 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2008年07月06日 16:06 | |
If locale.strcoll(a, b) fails because PyUnicode_FromObject(b) fails, refcount of a is wrong. Attached patch fixes the problem. |
|||
| msg69337 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2008年07月06日 16:07 | |
Example to reproduce the bug: import locale; locale.strcoll(u"a", None) |
|||
| msg70090 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年07月20日 20:45 | |
Fixed in r65134. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:36 | admin | set | github: 47553 |
| 2008年07月20日 20:45:03 | georg.brandl | set | status: open -> closed nosy: + georg.brandl resolution: fixed messages: + msg70090 |
| 2008年07月06日 17:12:01 | loewis | set | priority: high |
| 2008年07月06日 16:56:42 | georg.brandl | set | assignee: loewis nosy: + loewis |
| 2008年07月06日 16:07:27 | vstinner | set | messages: + msg69337 |
| 2008年07月06日 16:06:09 | vstinner | create | |