15
0

Accepting request 484363 from home:TheBlackCat:branches:devel:languages:python

Update to 4.0.11

OBS-URL: https://build.opensuse.org/request/show/484363
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-decorator?expand=0&rev=28
This commit is contained in:
Jan Matejek
2017-04-05 12:04:52 +00:00
committed by Git OBS Bridge
parent 7b77330a22
commit 531a132a57
4 changed files with 63 additions and 21 deletions

View File

@@ -1,3 +1,47 @@
-------------------------------------------------------------------
Sat Apr 1 21:20:43 UTC 2017 - toddrme2178@gmail.com
- Update to 4.0.11
* Small improvements to the documentation and tested with Python 3.6
- Update to 4.0.10
* Improved the documentation thanks to Tony Goodchild (zearin) who also
provided a much better CSS than the one I was using.
- Update to 4.0.9
* Same as 4.0.7 and 4.0.8, re-uploaded due to issues on PyPI.
- Update to 4.0.7
* Switched to a new changelog format (the one in http://keepachangelog.com/)
since it was contributed by Alexander Artemenko. Re-added a newline to support
old version of Python, as requested by [azjps](https://github.com/azjps).
- Update to 4.0.6
* Removed a file x.py accidentally entered in the tarball.
- Update to 4.0.5
* Documented a quirk signaled by David Goldstein when writing decorators
for functions with keyword arguments. Avoided copying the globals,
as signaled by Benjamin Peterson.
- Update to 4.0.4
* Included a patch from Zev Benjamin: now decorated functions play well
with cProfile.
- Update to 4.0.3
* Added a warning about the memoize example, as requested by Robert
Buchholz.
- Update to 4.0.2
* docs/README.rst was not included in MANIFEST.in by accident,
thus breaking the source installation.
- Update to 4.0.1
* Added docs directory and upload_docs command. Fixed bug with
`__qualname__`, reported by Lucian Petrut.
- Update to 4.0.0
* Removed the need for 2to3 by dropping the support for Python 2.5.
* Added a MANIFEST.in file and produced a proper wheel. Improved
the integration with setuptools so that `python setup.py test` works.
* Reworked the documentation and introduced `decorator.decorated`.
* Removed any dependence from `inspect.getargspec`, which is deprecated
in Python 3.5, as signaled by Ralf Gommers.
* Fixed `contextmanager` to work with Python 3.5.
* Copied the `__qualname__` attribute, as requested by Frazer McLean.
* Added a `dispatch_on` facility to implement generic functions.
- Implement single-spec version.
-------------------------------------------------------------------
Sat May 2 18:01:29 UTC 2015 - benoit.monin@gmx.fr