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.

Author larry
Recipients Arfrever, georg.brandl, larry, richard, serhiy.storchaka, vajrasky
Date 2014-02-09.15:47:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391960873.89.0.490790634657.issue20517@psf.upfronthosting.co.za>
In-reply-to
Content
Attached is patch #3.  This one has been tested on Linux, Windows 7 64-bit, and Snow Leopard 64-bit.  Windows Server 2008 32-bit and 64-bit
are running now, looking good so far.

Changes:

* The order of arguments for OSError is now:
    (errno, string, filename, winerror, filename2)
  The winerror argument is always ignored on non-Windows platforms and
  may be any value.  Preserving the order of existing calls is
  important.  I considered making filename2 a keyword-only argument
  (as Georg suggested in IRC) but this would have made pickling and
  unpickling much more elaborate.

* Removed new functions taking Py_UNICODE at Serhiy's insistence.

* Removed PyErr_SetFromWindowsErrWithFilenameObject from documentation,
  as it doesn't even exist.

* Further documentation fixes.
History
Date User Action Args
2014-02-09 15:47:54larrysetrecipients: + larry, richard, georg.brandl, Arfrever, serhiy.storchaka, vajrasky
2014-02-09 15:47:53larrysetmessageid: <1391960873.89.0.490790634657.issue20517@psf.upfronthosting.co.za>
2014-02-09 15:47:53larrylinkissue20517 messages
2014-02-09 15:47:53larrycreate