mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Use OS-agnostic filesystem paths in Python
This will eventually need to be done for #1908
This commit is contained in:
parent
ca36779a7e
commit
244af42d89
4 changed files with 26 additions and 26 deletions
|
@ -3,9 +3,9 @@
|
|||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
import sys
|
||||
sys.path.append("./parser/")
|
||||
sys.path.append("./ply/")
|
||||
import os
|
||||
sys.path.append(os.path.join(".", "parser"))
|
||||
sys.path.append(os.path.join(".", "ply"))
|
||||
import cPickle
|
||||
from Configuration import Configuration
|
||||
from CodegenRust import CGBindingRoot, replaceFileIfChanged
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue