[issue26946] os.path.realpath.__name__ is 'abspath'

2016-05-04 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue26946] os.path.realpath.__name__ is 'abspath'

2016-05-04 Thread Berker Peksag
Berker Peksag added the comment: It's because realpath is defined as # realpath is a no-op on systems without islink support realpath = abspath under Windows. -- nosy: +berker.peksag ___ Python tracker __

[issue26946] os.path.realpath.__name__ is 'abspath'

2016-05-04 Thread ppperry
ppperry added the comment: Also is true on python 3.4. Why does this matter anyway? -- nosy: +ppperry versions: +Python 3.4 ___ Python tracker ___ ___

[issue26946] os.path.realpath.__name__ is 'abspath'

2016-05-04 Thread Jon Morris
New submission from Jon Morris: A minor issue, but the name property for realpath is actually 'abspath'. Python 2.7.8 on Windows 6.1.7601 (7 sp1) -- messages: 264804 nosy: Jon Morris priority: normal severity: normal status: open title: os.path.realpath.__name__ is 'abspath' type: behav