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: The Windows bytes API has been deprecated, use Unicode filenames instead st = os.stat(path)
Type: Stage: resolved
Components: Versions: Python 3.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: pramod.jadhav, r.david.murray, terry.reedy
Priority: normal Keywords:

Created on 2014-03-14 04:53 by pramod.jadhav, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg213517 - (view) Author: Pramod Jadhav (pramod.jadhav) Date: 2014-03-14 04:53
C:\Python33\lib\genericpath.py:29: DeprecationWarning: The Windows bytes API has been deprecated, use Unicode filenames instead
  st = os.stat(path)
msg213547 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-14 13:31
Can you clarify what it is you are reporting as a bug, please?
msg213644 - (view) Author: Pramod Jadhav (pramod.jadhav) Date: 2014-03-15 07:01
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "C:\Python33\lib\site-packages\django\db\models\query.py", line 74, in __repr__
    return repr(data)
  File "C:\Python33\lib\site-packages\django\db\models\base.py", line 423, in __repr__
    u = six.text_type(self)
  File "C:\work\datafootprint\loksabha\models.py", line 62, in __str__
    self.term,
AttributeError: 'Loksabha' object has no attribute 'term'
msg213664 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-03-15 16:33
Please post on the python-list mailing list asking for help on either understanding your problem or formulating it into a bug report that we can act on.  In the meantime I'm going to close the issue as invalid, but you can reopen it if you can explain what the problem is.
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 65120
2014-03-15 16:33:23r.david.murraysetstatus: open -> closed
resolution: not a bug
messages: + msg213664

stage: resolved
2014-03-15 07:01:51pramod.jadhavsetmessages: + msg213644
2014-03-15 00:11:25terry.reedysetnosy: + terry.reedy
2014-03-14 13:31:09r.david.murraysetnosy: + r.david.murray
messages: + msg213547
2014-03-14 04:53:51pramod.jadhavcreate