[New-bugs-announce] [issue18221] abspath strips trailing spaces on win32

Jeremy Gray report at bugs.python.org
Sat Jun 15 14:38:02 CEST 2013


New submission from Jeremy Gray:

The behavior of os.path.abspath differs between Mac OS X and Windows. It seems like a bug that, on Windows, abspath strips trailing whitespace:
Windows:
>>> from os.path import abspath
>>> abspath('start  ') + 'END'
'c:\Users\jgray\code\startEND'
                         ^
Mac:
>>> from os.path import abspath
>>> abspath('start  ') + 'END'
'/Users/jgray/code/start  END'
                        ^^

I have only tested with python 2.7.3 (Enthought distribution), 32-bit, and only Mac 10.8.2 and Windows 7.

----------
components: Windows
messages: 191202
nosy: Jeremy.Gray
priority: normal
severity: normal
status: open
title: abspath strips trailing spaces on win32
type: behavior
versions: Python 2.7

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


More information about the New-bugs-announce mailing list