Path to this page:
Subject: CVS commit: pkgsrc/devel/py-docstyle
From: Adam Ciarcinski
Date: 2017-07-30 17:53:49
Message id: 20170730155349.6946FFACD@cvs.NetBSD.org
Log Message:
2.0.0:
Major Updates
* Support for numpy conventions verification has been added.
* Support for Python 2.6 has been dropped.
* Support for PyPy3 has been temporarily dropped, until it will be equivalent to \
CPython 3.3+ and supported by pip.
* Support for the pep257 console script has been dropped. Only the pydocstyle \
console script should be used.
* Errors are now printed to stdout instead of stderr.
New Features
* Decorator-based skipping via --ignore-decorators has been added.
* Support for using pycodestyle style wildcards has been added.
* Superfluous opening quotes are now reported as part of D300.
* Fixed a false-positive recognition of D410 and added D412.
* Added --config=<path> flag to override the normal config file discovery \
and choose a specific config file.
* Support for specifying error codes with partial prefix has been added, e.g., \
--select=D101,D2.
* All configuration file can now have the .ini extension.
* Added better imperative mood checks using third party stemmer.
Bug Fixes
* Made parser more robust to bad source files
* Modules are now considered private if their name starts with a single \
underscore. This is a bugfix where âpublic moduleâ (D100) was reported \
regardless of module name.
* Removed error when __all__ is a list.
* Fixed a bug where the @ sign was used as a matrix multiplication operator in \
Python 3.5, but was considered a decorator by the parser
Files: