[issue18439] Patchcheck for ACKS, NEWS does not work on Windows.

Ned Deily report at bugs.python.org
Mon Jul 22 01:32:18 CEST 2013


Ned Deily added the comment:

Re the patch: it looks like there's a debugging print left in it.  (Also, FYI, the patch did not apply cleanly using normal Unix patch; I had to strip the \r characters with (tr -d '\r' <patchcheck.diff); also it's best to not include Misc/NEWS changes in uploaded patches.) Otherwise, it should be good to go.

In general from Python's perspective, OS X is a POSIX-compliant (e.g. Unix-y) system, with "normal" Unix file system syntax and BSD-ish semantics.  So there's nothing special about os.path manipulations functions on OS X (platform="darwin") vs other Unix-based systems.  What can be confusing is that Classic Mac OS (Mac OS 9 and earlier) was not a Unix-based system and had a totally different file syntax.  Classic Mac OS has been obsolete for over a decade and nearly all traces of support for it (platform="mac") have been removed from Python 3 and Python 2.7, other than in os.path.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue18439>
_______________________________________


More information about the Python-bugs-list mailing list