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 2014年03月06日 23:46 by josh.r, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (7) | |||
|---|---|---|---|
| msg212853 - (view) | Author: Josh Rosenberg (josh.r) * (Python triager) | Date: 2014年03月06日 23:46 | |
Per my comments on #20858, datetime's argument handling is inconsistent. By using the 'i' format code, non-integer types are being coerced to int, even as other equivalent non-integer types are accepted (sometimes in a lossy fashion). Example: >>> from decimal import Decimal as d >>> from datetime import datetime >>> datetime(d("2000.5"), 1, 2) datetime.datetime(2000, 1, 2, 0, 0) >>> datetime(2000.0, 1, 2) Traceback (most recent call last): ... TypeError: integer argument expected, got float Note that the latter case would not lose data by coercion to int, yet it raises an error anyway, while the former is losing data silently. Similar discrepancies would occur between passing a str argument vs. a user-defined string type (the latter would need to implement __int__ to get the coercion that str gets through a special case in the int constructor, making int(x) and x.__int__() subtly different, since there is no str.__int__). For consistency, it seems like we should primarily be using typecode 'n', not 'i', so logical integers are properly converted, while anything else (including float/Decimal/str/user-string) must be cast by the caller to avoid the risk of silent data loss. I suspect tons of modules make similar "mistakes" in the interface (until today, I didn't realize PyLong_AsLong, and by extension, the 'i' type code would coerce non-integral types). I'm looking to start contributing to Python, and at least for time being I think I'll keep the bug targeted. I haven't tested, but I suspect this bug is in all versions of Python. Clearly it's not a bug or security issue worth a backport prior to 3.4 though. I'd happily create and submit a patch if this is a desired fix; I'd appreciate any pointers on how to get started (to date, all my Python C extension development has been for organization internal modules). |
|||
| msg212859 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2014年03月07日 01:21 | |
>I'd appreciate any pointers on how to get started You probably know that the relevant code is in http://hg.python.org/cpython/file/47f37a688c4c/Modules/_datetimemodule.c#l4059 The devguide should get you started: http://docs.python.org/devguide/ |
|||
| msg212860 - (view) | Author: Josh Rosenberg (josh.r) * (Python triager) | Date: 2014年03月07日 01:31 | |
Thank you very much. Very helpful. I'll see about whipping up a preliminary patch. |
|||
| msg349558 - (view) | Author: Joannah Nanjekye (nanjekyejoannah) * (Python committer) | Date: 2019年08月13日 13:56 | |
Could be related to some discussions in this PR: https://github.com/python/cpython/pull/14842 |
|||
| msg349559 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年08月13日 14:03 | |
See also bpo-35707. |
|||
| msg349564 - (view) | Author: Jeroen Demeyer (jdemeyer) * (Python triager) | Date: 2019年08月13日 14:35 | |
This is essentially a duplicate of #36048. The example is now deprecated: >>> from decimal import Decimal >>> from datetime import datetime >>> datetime(Decimal("2000.5"), 1, 2) <stdin>:1: DeprecationWarning: an integer is required (got type decimal.Decimal). Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python. datetime.datetime(2000, 1, 2, 0, 0) So I think that this can be closed. |
|||
| msg349577 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年08月13日 15:52 | |
This issue has been fixed in Python 3.3 by bpo-17576 which started to emit the DeprecationWarning. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:59 | admin | set | github: 65060 |
| 2019年08月13日 15:52:44 | vstinner | set | status: open -> closed superseder: PyNumber_Index() is not int-subclass friendly (or operator.index() docs lie) messages: + msg349577 resolution: duplicate stage: needs patch -> resolved |
| 2019年08月13日 14:35:36 | jdemeyer | set | nosy:
+ jdemeyer messages: + msg349564 |
| 2019年08月13日 14:03:34 | vstinner | set | messages: + msg349559 |
| 2019年08月13日 13:57:29 | nanjekyejoannah | set | nosy:
+ vstinner |
| 2019年08月13日 13:56:00 | nanjekyejoannah | set | messages: + msg349558 |
| 2019年08月13日 13:54:09 | xtreak | set | nosy:
+ p-ganssle |
| 2019年08月13日 13:32:28 | nanjekyejoannah | set | nosy:
+ nanjekyejoannah |
| 2014年03月07日 01:31:45 | josh.r | set | messages: + msg212860 |
| 2014年03月07日 01:21:45 | belopolsky | set | messages:
+ msg212859 stage: needs patch |
| 2014年03月07日 01:14:10 | belopolsky | set | nosy:
+ mark.dickinson |
| 2014年03月07日 01:12:27 | bdkearns | set | nosy:
+ bdkearns |
| 2014年03月07日 01:01:05 | ned.deily | set | nosy:
+ lemburg, tim.peters, belopolsky |
| 2014年03月06日 23:46:53 | josh.r | create | |