src/d/j/django-emailauth-0.1/example/manage.py django-emailauth(Download)
#!/usr/bin/env python from os import path, environ from os.path import abspath, dirname, join import sys example_dir = dirname(abspath(__file__))
src/c/c/cca-forum-HEAD/cca-tools-installer/trunk/packages/chasm.py cca-forum(Download)
def build_method(self):
if os.environ.has_key("CFLAGS"):
CFLAGS = os.environ["CFLAGS"]
os.environ["CFLAGS"] = "-fPIC"
if os.environ.has_key("CPPFLAGS"):
CPPFLAGS = os.environ("CPPFLAGS")
os.environ["CPPFLAGS"] = "-fPIC"
src/c/u/cubicweb-3.9.8/toolsutils.py cubicweb(Download)
import os, sys import subprocess from os import listdir, makedirs, environ, chmod, walk, remove from os.path import exists, join, abspath, normpath try:
src/t/r/transmusic-HEAD/program/transcode.py transmusic(Download)
import gettext import pexpect from PyQt4.QtCore import QThread from os import environ, path, mkdir, remove, kill, listdir, getpid, popen from signal import SIGTERM from time import sleep from macros import fformat, cp
src/p/u/pumat-HEAD/tools/energy.py pumat(Download)
from enthought.traits.api import HasTraits, File, Directory, Property, Float, Array, Int, Instance, Range #Standard library imports from os import access, pathsep, environ, X_OK, W_OK, R_OK, remove from os.path import exists, split, join, abspath from subprocess import Popen, PIPE from sys import stdout
src/p/y/pycogent-HEAD/trunk/cogent/app/blast.py pycogent(Download)
#!/usr/bin/env python """Application controllers for blast family """ from string import strip from os import remove, access, F_OK, environ, path from cogent.app.parameters import FlagParameter, ValuedParameter, MixedParameter from cogent.app.util import CommandLineApplication, ResultPath, \
src/p/y/pycogent-HEAD/cogent/app/blast.py pycogent(Download)
#!/usr/bin/env python """Application controllers for blast family """ from string import strip from os import remove, access, F_OK, environ, path from cogent.app.parameters import FlagParameter, ValuedParameter, MixedParameter from cogent.app.util import CommandLineApplication, ResultPath, \
src/u/m/umit-HEAD/umitCore/Paths.py umit(Download)
# along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from os import R_OK, W_OK, access, mkdir, getcwd, environ, getcwd from os.path import exists, join, split, abspath, dirname from tempfile import mktemp from types import StringTypes
src/p/y/pyClanSphere-HEAD/pyClanSphere/application.py pyClanSphere(Download)
:license: BSD, see LICENSE for more details.
"""
import sys
from os import path, remove, makedirs, walk, environ
from time import time
from urlparse import urlparse
from collections import deque
src/p/y/pyblosxom-HEAD/trunk/contrib/editfile.py pyblosxom(Download)
__version__ = "$Id: editfile.py 986 2007-02-17 17:26:37Z willhelm $"
from os import environ
EDITOR = environ.get('EDITOR')
if not EDITOR: EDITOR = environ.get('VISUAL')
if not EDITOR: EDITOR = 'vim -c "set tabstop=4 shiftwidth=4 expandtab"'
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next