Metadata-Version: 2.1
Name: padme
Version: 1.1.1
Summary: Padme is a mostly transparent proxy class for Python
Home-page: https://github.com/zyga/padme
Author: Zygmunt Krynicki
Author-email: me@zygoon.pl
License: LGPLv3
Keywords: padme proxy
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: COPYING
License-File: COPYING.LESSER
License-File: AUTHORS.rst

===================================================
Padme - a mostly transparent proxy class for Python
===================================================

.. image:: https://badge.fury.io/py/padme.png
    :target: http://badge.fury.io/py/padme

.. image:: https://travis-ci.org/zyga/padme.png?branch=master
        :target: https://travis-ci.org/zyga/padme

.. image:: https://pypip.in/d/padme/badge.png
        :target: https://pypi.python.org/pypi/padme

Features
========

* Free software: LGPLv3 license
* Support for Python 2.7 and Python 3.2+
* Documentation: https://padme.readthedocs.org.
* Create proxy classes for any object with :class:`padme.proxy`.
* Redirect particular methods in subclasses using :class:`padme.unproxied`.




History
=======

1.1.1 (2015-03-04)
------------------
* Add general support for **Python 2.7**.
* All numeric methods are now supported with some methods
  exclusive to Python 2.x (``__div__()``, ``__coerce__()``,
  ``__oct__()``, ``__hex__()``).
* Add support for the new matrix multiplication operator ``@``.
* Make ``__nonzero__()`` and ``__unicode__()`` exlusive to Python 2.x.
* Make ``__bool__()`` and ``__bytes__()`` exclusive to Python 3.x.
* Make ``__length_hint()`` exclusive to Python 3.4.
* Add support for the ``__cmp__()`` method, exclusive to Python 2.x.
* Add support for accessing the proxied object with the new
  :meth:`~padme.proxy.original()` function.
* Add support for accessing proxy state with the new
  :meth:`~padme.proxy.state()` function.
* De-couple proxy classes from proxied objects, much more lightweight proxy
  design is possible this way (less objects, lower cost to create each new proxy).

1.0 (2014-02-11)
----------------

* First release on PyPI.
* Add a short introduction. 
* Enable travis-ci.org integration.
* Remove numbering of generated meta-classes

2015
----

* Released on PyPI as a part of plainbox as ``plainbox.impl.proxy``
