You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

envdir

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

envdir - pypi Package Compare versions

Comparing version
0.4
to
0.4.1
+6
-0
CHANGES.rst
Changelog
---------
0.4.1 (08/21/2013)
^^^^^^^^^^^^^^^^^^
* Fixed ``envdir.read()`` to actually work with already existing environment
variables. Extended docs to test Python use.
0.4 (08/09/2013)

@@ -5,0 +11,0 @@ ^^^^^^^^^^^^^^^^

+7
-1
Metadata-Version: 1.1
Name: envdir
Version: 0.4
Version: 0.4.1
Summary: A Python port of daemontools' envdir.

@@ -173,2 +173,8 @@ Home-page: http://github.com/jezdez/envdir

0.4.1 (08/21/2013)
^^^^^^^^^^^^^^^^^^
* Fixed ``envdir.read()`` to actually work with already existing environment
variables. Extended docs to test Python use.
0.4 (08/09/2013)

@@ -175,0 +181,0 @@ ^^^^^^^^^^^^^^^^

+1
-1

@@ -1,3 +0,3 @@

from .__main__ import envdir, main, __version__ # noop
from .__main__ import envdir, main, __version__ # noop
read = envdir.read

@@ -7,3 +7,3 @@ import glob

__version__ = '0.4'
__version__ = '0.4.1'

@@ -54,3 +54,3 @@ # must have shell = True on Windows

self.parser.error("envdir %r does not exist" % path, no=111)
return real_path
return real_path

@@ -65,3 +65,3 @@ def read(self, path=None):

if value:
os.environ.setdefault(name, value)
os.environ[name] = value
elif name in os.environ:

@@ -133,3 +133,2 @@ del os.environ[name]

def main(self, name, args):

@@ -136,0 +135,0 @@ options, args = self.parser.parse_args(args)

Metadata-Version: 1.1
Name: envdir
Version: 0.4
Version: 0.4.1
Summary: A Python port of daemontools' envdir.

@@ -173,2 +173,8 @@ Home-page: http://github.com/jezdez/envdir

0.4.1 (08/21/2013)
^^^^^^^^^^^^^^^^^^
* Fixed ``envdir.read()`` to actually work with already existing environment
variables. Extended docs to test Python use.
0.4 (08/09/2013)

@@ -175,0 +181,0 @@ ^^^^^^^^^^^^^^^^

Sorry, the diff of this file is not supported yet