[issue41565] from os.path import join join('3', '{:3') return '{:3' in windows

2020-08-18 Thread song super
song super <2262720...@qq.com> added the comment: Think you very much,I am a college student, do not understand these underlying principles, this problem is I wrote a program on Linux, later moved to the windows system found, thank you very much for your answers -- nosy: +2262

[issue41565] from os.path import join join('3', '{:3') return '{:3' in windows

2020-08-17 Thread song super
song super <2262720...@qq.com> added the comment: I mean,os.path.join('3', '{:3') return '{:3' in windows,However,os.path.join('3', '{:3') return '3/{:3'in linux,output result not '3'in windows,why? for example:

[issue41565] from os.path import join join('3', '{:3') return '{:3' in windows

2020-08-16 Thread song super
New submission from song super <2262720...@qq.com>: python3.6 from os.path import join join('3', '{:3') return '{:3' in windows,However,join('3', '{:3') return '3//{:3' in linux,I think this is a bug -- compo