- Changed the string formatting to old printf style for python2.4 and python2.5 support - Emulating `functools.update_wrapper()` under python2.4 because `functools` has been introduced only in python2.5.
1.0.8
This is a small library with relatively long README.rst so I've reorganized the sections to make the TOC more attractive and made it clear at the beginning of the doc that one has to read only the first brief _Usage_ section in order to use the library.
1.0.7
- Added the `FIRST_DEFAULT_ARG` constant and the `kwonly_defaults` decorator as a convenience API. - Improved README.rst: - Added doc for `FIRST_DEFAULT_ARG` and `kwonly_defaults` - Added two new sections: "Emulated keyword-only args VS static analyzers" and "Poor man’s python2 keyword-only arguments"
1.0.6
I've actually created this version just to try to get pypi work with my package. It contains only minor changes to README.rst compared to the previous version.
1.0.5
- Added the "Why use keyword-only arguments?" section to README.rst. - Under python3 we use `inspect.getfullargspec()` instead of the older `inspect.getargspec()`.