Skip to content

Instantly share code, notes, and snippets.

@goyusia
Created November 1, 2015 04:55
Show Gist options
  • Select an option

  • Save goyusia/bbaae02f4303deff03d3 to your computer and use it in GitHub Desktop.

Select an option

Save goyusia/bbaae02f4303deff03d3 to your computer and use it in GitHub Desktop.
buggy os.path.join
import os
a = '/home/haruna/devel/libsora.so/content'
b = '../static/sample'
c = 'sidetail-sora.gif'
print(os.path.join(a, b, c))
#/home/haruna/devel/libsora.so/content/../static/sample/sidetail-sora.gif
a = '/home/sora/devel/libsora.so/content'
b = '/static/sample'
c = 'sidetail-sora.gif'
print(os.path.join(a, b, c))
# /static/sample/sidetail-sora.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment