source:
utilitiespy/tudelft/utilities/tools/systemproperties.py@
1119
Last change on this file since 1119 was 1119, checked in by , 7 weeks ago | |
---|---|
File size: 243 bytes |
Line | |
---|---|
1 | |
2 | from tempfile import gettempdir |
3 | |
4 | def systemproperties(): |
5 | ''' |
6 | returns dict with java-style keywords as "java.io.tmpdir" |
7 | and returns python-appropriate values |
8 | ''' |
9 | return { |
10 | "java.io.tmpdir":gettempdir() |
11 | } |
12 |
Note:
See TracBrowser
for help on using the repository browser.