Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Odd behavior when using datetime.timedelta under cProfile #79185

Closed
beaugunderson mannequin opened this issue Oct 16, 2018 · 5 comments
Closed

Odd behavior when using datetime.timedelta under cProfile #79185

beaugunderson mannequin opened this issue Oct 16, 2018 · 5 comments
Labels
3.7 (EOL) end of life stdlib Python modules in the Lib dir

Comments

@beaugunderson
Copy link
Mannequin

beaugunderson mannequin commented Oct 16, 2018

BPO 35004
Nosy @asottile, @pganssle, @tirkarthi, @beaugunderson, @isidentical

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = None
closed_at = None
created_at = <Date 2018-10-16.22:31:03.052>
labels = ['3.7']
title = 'Odd behavior when using datetime.timedelta under cProfile'
updated_at = <Date 2019-11-18.19:14:19.824>
user = 'https://github.com/beaugunderson'

bugs.python.org fields:

activity = <Date 2019-11-18.19:14:19.824>
actor = 'BTaskaya'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = []
creation = <Date 2018-10-16.22:31:03.052>
creator = 'beaugunderson'
dependencies = []
files = []
hgrepos = []
issue_num = 35004
keywords = []
message_count = 4.0
messages = ['327846', '327856', '328268', '356901']
nosy_count = 5.0
nosy_names = ['Anthony Sottile', 'p-ganssle', 'xtreak', 'beaugunderson', 'BTaskaya']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue35004'
versions = ['Python 3.7']

@beaugunderson
Copy link
Mannequin Author

beaugunderson mannequin commented Oct 16, 2018

In chasing down a bug in my code that only manifests itself when running under cProfile I managed to find the culprit in datetime.timedelta by way of dateutil.

Here is a small repro:

https://gist.github.com/beaugunderson/68ea6424a4fdcf763ccad08e42a74974

I believe an exception should still be raised in broken() when run under cProfile, but for some reason it is not.

@beaugunderson beaugunderson mannequin added the 3.7 (EOL) end of life label Oct 16, 2018
@asottile
Copy link
Mannequin

asottile mannequin commented Oct 17, 2018

Here's a simpler reproduction without involving a third party library:

>>> import cProfile
>>> from datetime import timedelta
>>> pr = cProfile.Profile()
>>> timedelta.total_seconds(-25200)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'total_seconds' requires a 'datetime.timedelta' object but received a 'int'
>>> pr.enable()
>>> timedelta.total_seconds(-25200)
2177366085.870893
>>> pr.disable()
>>> timedelta.total_seconds(-25200)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'total_seconds' requires a 'datetime.timedelta' object but received a 'int'

However, it appears fixed on master:

$ ./python
Python 3.8.0a0 (heads/master:c984d20ec8, Oct 16 2018, 20:47:49) 
[GCC 7.3.0] on linux
>>> 
>>> import cProfile
>>> from datetime import timedelta
>>> pr = cProfile.Profile()
>>> timedelta.total_seconds(-25200)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'total_seconds' requires a 'datetime.timedelta' object but received a 'int'
>>> pr.enable()
>>> timedelta.total_seconds(-25200)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'total_seconds' for 'datetime.timedelta' objects doesn't apply to 'int' object
>>> pr.disable()
>>> timedelta.total_seconds(-25200)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'total_seconds' requires a 'datetime.timedelta' object but received a 'int'

Doing a git bisect shows that this commit fixed the issue: #8300

Here's the bpo for that: https://bugs.python.org/issue34126

@tirkarthi
Copy link
Member

Thanks Anthony for the details. This was fixed in master and back ported to 3.7. The fix is also released with 3.7.1 [0] which I have verified locally. So I propose closing this issue since upgrading to the latest maintenance release fixes this.

[0] https://www.python.org/downloads/release/python-371/

Thanks

@isidentical
Copy link
Member

This bug is fixed in both 3.8 and 3.7, @p-ganssle what do you think about closing this?

@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
@iritkatriel iritkatriel added the stdlib Python modules in the Lib dir label Nov 27, 2023
@StanFromIreland
Copy link
Contributor

This bug has been fixed for a few years, this issue can be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3.7 (EOL) end of life stdlib Python modules in the Lib dir
Projects
Development

No branches or pull requests

5 participants