Changeset 4923
- Timestamp:
- 07/09/09 11:24:38 (5 months ago)
- Location:
- mpich2/trunk/src/pm/mpd
- Files:
-
- 4 modified
-
mpdboot.py (modified) (1 diff)
-
mpdcheck.py (modified) (1 diff)
-
mpdgdbdrv.py (modified) (1 diff)
-
newboot.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mpich2/trunk/src/pm/mpd/mpdboot.py
r4326 r4923 44 44 the default is 4 45 45 """ 46 47 # workaround to suppress deprecated module warnings in python2.6 48 # see https://trac.mcs.anl.gov/projects/mpich2/ticket/362 for tracking 49 import warnings 50 warnings.filterwarnings('ignore', '.*the popen2 module is deprecated.*', DeprecationWarning) 51 46 52 from time import ctime 47 53 __author__ = "Ralph Butler and Rusty Lusk" -
mpich2/trunk/src/pm/mpd/mpdcheck.py
r4240 r4923 54 54 host/port where you previously started the server 55 55 """ 56 57 # workaround to suppress deprecated module warnings in python2.6 58 # see https://trac.mcs.anl.gov/projects/mpich2/ticket/362 for tracking 59 import warnings 60 warnings.filterwarnings('ignore', '.*the popen2 module is deprecated.*', DeprecationWarning) 61 56 62 from time import ctime 57 63 __author__ = "Ralph Butler and Rusty Lusk" -
mpich2/trunk/src/pm/mpd/mpdgdbdrv.py
r864 r4923 9 9 exec'd by mpdman to support mpigdb. 10 10 """ 11 12 # workaround to suppress deprecated module warnings in python2.6 13 # see https://trac.mcs.anl.gov/projects/mpich2/ticket/362 for tracking 14 import warnings 15 warnings.filterwarnings('ignore', '.*the popen2 module is deprecated.*', DeprecationWarning) 16 11 17 from time import ctime 12 18 __author__ = "Ralph Butler and Rusty Lusk" -
mpich2/trunk/src/pm/mpd/newboot.py
r4326 r4923 32 32 the default is 4 33 33 """ 34 35 # workaround to suppress deprecated module warnings in python2.6 36 # see https://trac.mcs.anl.gov/projects/mpich2/ticket/362 for tracking 37 import warnings 38 warnings.filterwarnings('ignore', '.*the popen2 module is deprecated.*', DeprecationWarning) 39 34 40 from time import ctime 35 41 __author__ = "Ralph Butler and Rusty Lusk"
