KEMBAR78
Inconsistency with os.environ and str/unicode in Python 2 · Issue #176 · theskumar/python-dotenv · GitHub
Skip to content

Inconsistency with os.environ and str/unicode in Python 2 #176

@bbc2

Description

@bbc2

In Python 2, os.environ is a map with str keys and str values, not unicode. Unfortunately, values loaded with Python-dotenv are unicode.

Example with test.py:

import os

import dotenv

dotenv.load_dotenv()
print(type(os.environ["foo"]))

and .env:

foo=bar

Results:

> python test.py
<type 'unicode'>
> env foo=bar python test.py
<type 'str'>

I think that it's probably not worth fixing given Python 2's upcoming end of life, but I'm pointing this out here because this might justify turning off some Mypy type warnings for Python 2.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions