[Python-Dev] [Fwd: [Python-checkins] r72331 - python/branches/py3k/Modules/posixmodule.c]

Eric Smith eric at trueblade.com
Tue May 5 16:08:34 CEST 2009


Modules/posixmodule.c now compiles for me, but I get a Bus Error in 
test_lchflags when running test_posixmodule on Mac OS X 10.5. I'll open 
a release blocker bug on this.

-------- Original Message --------
Subject: [Python-checkins] r72331 - 
python/branches/py3k/Modules/posixmodule.c
Date: Tue,  5 May 2009 15:07:31 +0200 (CEST)
From: eric.smith <python-checkins at python.org>
To: python-checkins at python.org

Author: eric.smith
Date: Tue May  5 15:07:30 2009
New Revision: 72331

Log:
Added missing semicolon.

Modified:
    python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Tue May  5 15:07:30 2009
@@ -1928,7 +1928,7 @@
  	if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
  	                      &opath, &i))
  		return NULL;
-	path = bytes2str(opath, 1)
+	path = bytes2str(opath, 1);
  	Py_BEGIN_ALLOW_THREADS
  	res = lchmod(path, i);
  	Py_END_ALLOW_THREADS
_______________________________________________
Python-checkins mailing list
Python-checkins at python.org
http://mail.python.org/mailman/listinfo/python-checkins



More information about the Python-Dev mailing list