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.

classification
Title: DeprecationWarning in json/encoder.py
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: Paul Durack, r.david.murray
Priority: normal Keywords:

Created on 2017-04-13 02:40 by Paul Durack, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (13)
msg291582 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-13 02:40
I have started receiving the following warnings which are starting to prevent an ipython session from functioning:

/home/user/anaconda2/envs/cdatcmornclnco/lib/python2.7/json/encoder.py:207: DeprecationWarning: Interpreting naive datetime as local 2017-04-12 17:15:36.235571. Please add timezone info to timestamps.
  chunks = self.iterencode(o, _one_shot=True)
/home/user/anaconda2/envs/cdatcmornclnco/lib/python2.7/json/encoder.py:207: DeprecationWarning: Interpreting naive datetime as local 2017-04-12 17:15:36.267401. Please add timezone info to timestamps.
  chunks = self.iterencode(o, _one_shot=True)

The only way I can continue is to terminate the ipython shell and open a new instance.

Can someone tell me what I need to do to solve the issue? Is there a json import somewhere that requires some new arguments?
msg291583 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-13 02:46
I have attempted to quieten these using:

In [2]: import warnings
   ...: warnings.filterwarnings('ignore', category=DeprecationWarning)
In [3]: import vcs
/home/user/anaconda2/envs/cdatcmornclnco/lib/python2.7/json/encoder.py:207: DeprecationWarning: Interpreting naive datetime as local 2017-04-12 19:45:31.251897. Please add timezone info to timestamps.
  chunks = self.iterencode(o, _one_shot=True)

However, this doesn't seem to be working
msg291609 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-13 12:54
If a warning is causing iPython to hang, there is something seriously wrong with iPython.  A warning is just a message written to stderr, it doesn't affect the execution of the program.

The json module does not natively support datetime, so whatever is happening, it is being triggered by non-stdlib code (probably a json subclass in the vcs package you are working with).  I suggest you pursue this with the community that originated the vcs package.
msg291610 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-13 12:56
In case it wasn't clear: I seriously doubt that iPython is hanging due to the warning, I think something else must be happening and the warning is a red herring.
msg291671 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-14 16:45
@r.david.murray, rather than just closing this issue (which appears to be occurring intermittently for other users), is there a doc that you can point to that describes why there is a DeprecationWarning being printed - and what change has occurred (and when) that has led to my issue.

It seems that jupyter notebooks are suffering the same problem, so I agree it's a non-standard lib issue, however some further assistance in resolving this issue by suggesting where to look would be helpful
msg291672 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-14 16:48
I also wonder whether the fact that the warnings library doesn't seems to be catching these errors when

In [2]: import warnings
   ...: warnings.filterwarnings('ignore', category=DeprecationWarning)
In [3]: import vcs
/home/user/anaconda2/envs/cdatcmornclnco/lib/python2.7/json/encoder.py:207: DeprecationWarning: Interpreting naive datetime as local 2017-04-12 19:45:31.251897. Please add timezone info to timestamps.
  chunks = self.iterencode(o, _one_shot=True)

Is being used is a similar issue - it seems something is falling through the cracks here
msg291673 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-14 17:26
I don't believe that warning message is generated by the python standard library.  I can't find it in the codebase, and I can't think of any context in which we'd have a reason to generate that message.
msg291674 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-14 17:29
As for the filterwarnings, If you can come up with a demonstration of a problem that does not involve third party code, please open a new issue with the reproducer.
msg291675 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-14 17:33
@r.david.murray, is this not the stdlib?

https://github.com/python/cpython/blob/master/Lib/json/encoder.py#L182-L202

The error message appears to be pointing back to this, how (and why) it gets there (and what has changed recently so that this DeprecationWarning is being triggered) is the question that I am seeking answers..
msg291678 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-14 19:18
Yes, but the way deprecation warnings work is that there is a stacklevel specified, and the line reported in the error is that number of steps back up the call stack from where the warning was actually issued.  The json module doesn't natively handle datetime, so there *must* be third party code that is doing the datetime encoding.  It is that code that is triggering the Deprecation warning, and the stacklevel on that deprecation warning must skip the third party code and go up another level to land in the encode.py file.  (self.iterencode can result in a call out to user code.)  This may or may not be a bug in the third party DeprecationWarning...it is sometimes hard to get stacklevel right for all cases, especially if the code in question is usually called from a nested function inside the library.
msg291680 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-14 19:23
@r.david.murray fair enough, so it's an external lib that is the problem.. 

It does appear that similar issues have been appearing fairly recently across the github-o-sphere, some of these instances are listed at https://github.com/jupyter/jupyter/issues/253#issue-221849527

I've managed to solve my usability problem by commenting out a
`#warnings.simplefilter('default')` line in the vcs package, which gets me back up and working, but still seems like there is a tangle up somewhere..

Thanks for taking the time to educate me
msg291681 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2017-04-14 19:32
I thought something like that might be the problem with your attempt to suppress the warnings.  A library really should not call a global state function such as filterwarnings, that should be done only by the application.  You might want to file a bug report with them about that.
msg291682 - (view) Author: Paul Durack (Paul Durack) Date: 2017-04-14 19:33
@r.david.murray, yep one step ahead of your last comment

https://github.com/UV-CDAT/vcs/issues/170#issuecomment-294219991

feel free to chime in if you think something else would be useful to highlight
History
Date User Action Args
2022-04-11 14:58:45adminsetgithub: 74249
2017-04-14 19:33:57Paul Duracksetmessages: + msg291682
2017-04-14 19:32:14r.david.murraysetmessages: + msg291681
2017-04-14 19:23:01Paul Duracksetmessages: + msg291680
2017-04-14 19:18:04r.david.murraysetmessages: + msg291678
2017-04-14 17:33:08Paul Duracksetmessages: + msg291675
2017-04-14 17:29:07r.david.murraysetmessages: + msg291674
2017-04-14 17:26:11r.david.murraysetmessages: + msg291673
2017-04-14 16:48:25Paul Duracksetmessages: + msg291672
2017-04-14 16:45:50Paul Duracksetmessages: + msg291671
2017-04-13 12:56:18r.david.murraysetmessages: + msg291610
2017-04-13 12:54:41r.david.murraysetstatus: open -> closed

type: behavior

nosy: + r.david.murray
messages: + msg291609
resolution: third party
stage: resolved
2017-04-13 02:46:41Paul Duracksetmessages: + msg291583
2017-04-13 02:40:26Paul Durackcreate