Giter VIP home page Giter VIP logo

dictproxyhack's Introduction

dictproxyhack

Exposes the immutable dictproxy type to all (?) versions of Python.

PEP416 asked for a frozendict type, but was rejected. The alternative was to publicly expose dictproxy, the type used for and immutable object's __dict__, which wraps an existing dict and provides a read-only interface to it. The type has existed since 2.2, but it's never had a Python-land constructor.

Until now. But only in 3.3+. Which is not all that helpful to some of us.

This module clumsily exposes the same type to previous versions of Python.

Usage

from dictproxyhack import dictproxy

myproxy = dictproxy(dict(foo="bar"))
print(myproxy['foo'])
myproxy['baz'] = "quux"  # TypeError

Since the proxy holds a reference to the underlying dict (but doesn't provide any way to get it back), you can trivially implement frozendict:

def frozendict(*args, **kwargs):
    return dictproxy(dict(*args, **kwargs))

Might as well just inline that where you need it, really.

Dependencies

Python. Should work anywhere. Maybe.

On Python 3.3+, you get the real mappingproxy type, which lives in the types module as MappingProxyType.

On CPython 2.5+, you get a fake class that forcibly instantiates dictproxy objects via ctypes shenanigans.

On nearly anything else, you get a regular class that wraps a dict and doesn't implement any mutating parts of the mapping interface. Not a fabulous solution, but good enough, and only applies until your favorite port catches up with 3.3's standard library.

On non-C Python ports that predate 2.6, you get pretty much a dict, because the Mapping ABC doesn't even exist. Sorry.

The shim classes also fool isinstance and issubclass, so your dirty typechecking should work equally poorly anywhere.

I've only actually tried this library on CPython 2.6, 2.7, 3.2, 3.3, and PyPy 2.1, but I'm interested in hearing whether it works elsewhere.

Gotchas

Don't subclass dictproxy. Python 3.3+ won't let you, and the shims for other versions are of extremely dubious use.

dictproxy has been renamed to mappingproxy in 3.3+, so don't rely on repr to match across versions or anything. (It seemed apropos to use the older name for this module.)

dictproxyhack's People

Contributors

eevee avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.