Your IP : 216.73.217.117


Current Path : /usr/lib/google-cloud-sdk/lib/third_party/docker/credentials/
Upload File :
Current File : //usr/lib/google-cloud-sdk/lib/third_party/docker/credentials/utils.py

import os


def create_environment_dict(overrides):
    """
    Create and return a copy of os.environ with the specified overrides
    """
    result = os.environ.copy()
    result.update(overrides or {})
    return result