Skip to content

Commit

Permalink
Update to 1.6.2
Browse files Browse the repository at this point in the history
Upstream changes:

1.6.2 (2015-02-15)

Changes:

    Added check for breaking around a binary operator. (Issue #197, Pull #305)

Bugs:

    Restored config_file parameter in process_options(). (Issue #380)

1.6.1 (2015-02-08)

Changes:

    Assign variables before referenced. (Issue #287)

Bugs:

    Exception thrown due to unassigned local_dir variable. (Issue #377)

1.6.0 (2015-02-06)

News:

    Ian Lee <ianlee1521@gmail.com> joined the project as a maintainer.

Changes:

    Report E731 for lambda assignment. (Issue #277)
    Report E704 for one-liner def instead of E701. Do not report this error in the default configuration. (Issue #277)
    Replace codes E111, E112 and E113 with codes E114, E115 and E116 for bad indentation of comments. (Issue #274)
    Report E266 instead of E265 when the block comment starts with multiple #. (Issue #270)
    Report E402 for import statements not at the top of the file. (Issue #264)
    Do not enforce whitespaces around ** operator. (Issue #292)
    Strip whitespace from around paths during normalization. (Issue #339 / #343)
    Update --format documentation. (Issue #198 / Pull Request #310)
    Add .tox/ to default excludes. (Issue #335)
    Do not report E121 or E126 in the default configuration. (Issues #256 / #316)
    Allow spaces around the equals sign in an annotated function. (Issue #357)
    Allow trailing backslash if in an inline comment. (Issue #374)
    If --config is used, only that configuration is processed. Otherwise, merge the user and local configurations are merged. (Issue #368 / #369)

Bug fixes:

    Don’t crash if Checker.build_tokens_line() returns None. (Issue #306)
    Don’t crash if os.path.expanduser() throws an ImportError. (Issue #297)
    Missing space around keyword parameter equal not always reported, E251. (Issue #323)
    Fix false positive E711/E712/E713. (Issues #330 and #336)
    Do not skip physical checks if the newline is escaped. (Issue #319)
    Flush sys.stdout to avoid race conditions with printing. See flake8 bug: https://gitlab.com/pycqa/flake8/issues/17 for more details. (Issue #363)
  • Loading branch information
wen committed Aug 23, 2015
1 parent 2deddd9 commit bb43249
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions devel/py-pep8/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.3 2014/07/28 02:48:49 wen Exp $
# $NetBSD: Makefile,v 1.4 2015/08/23 11:26:38 wen Exp $
#

DISTNAME= pep8-1.5.7
DISTNAME= pep8-1.6.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= http://pypi.python.org/packages/source/p/pep8/
Expand Down
8 changes: 4 additions & 4 deletions devel/py-pep8/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.3 2014/07/28 02:48:49 wen Exp $
$NetBSD: distinfo,v 1.4 2015/08/23 11:26:38 wen Exp $

SHA1 (pep8-1.5.7.tar.gz) = aca8bdae94369b1193bc8a6b055ef0cb860eae28
RMD160 (pep8-1.5.7.tar.gz) = 21cb6831c8f239d86e46459f5e0e20cf4a4d95a2
Size (pep8-1.5.7.tar.gz) = 67302 bytes
SHA1 (pep8-1.6.2.tar.gz) = c39c0c9cdbcaded2ca05646212750d3ab755d047
RMD160 (pep8-1.6.2.tar.gz) = 8f6d30def6a2e04386c4c8c310443966d7f63de2
Size (pep8-1.6.2.tar.gz) = 74534 bytes

0 comments on commit bb43249

Please sign in to comment.