source: utilitiespy/tudelft/utilities/tools/systemproperties.py@ 1120

Last change on this file since 1120 was 1119, checked in by wouter, 7 weeks ago

added systemproperties

File size: 243 bytes
Line 
1
2from tempfile import gettempdir
3
4def 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.