Skip to content

Commit

Permalink
Merge branch 'py3-pure-python' into flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed May 3, 2017
2 parents 4bb5c18 + d70a5f8 commit dad72db
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
13 changes: 11 additions & 2 deletions CHANGES.rst
Expand Up @@ -3,11 +3,20 @@ Changelog

For changes before version 3.0, see ``HISTORY.rst``.

4.0 (unreleased)
----------------
4.0a5 (unreleased)
------------------

- Nothing changed yet.


4.0a4 (2017-02-01)
------------------

- Use `@implementer` class decorator.

- Remove ``AccessControl.Permission.name_trans`` to ease Python 3 migration.
Use ``AccessControl.Permission.getPermissionIdentifier()`` instead.

4.0a3 (2016-08-05)
------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -3,6 +3,7 @@ include *.rst

recursive-include include *
recursive-include src/AccessControl *
recursive-include docs *.rst

global-exclude *.dll
global-exclude *.pyc
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@
join('include', 'Acquisition', 'Acquisition.h')]),
]

__version__ = '4.0a4.dev0'
__version__ = '4.0a5.dev0'

setup(name='AccessControl',
version=__version__,
Expand Down
5 changes: 2 additions & 3 deletions src/AccessControl/User.py
Expand Up @@ -13,9 +13,9 @@
"""Access control package.
"""

from AccessControl.users import emergency_user as super
from AccessControl.users import UnrestrictedUser as Super
# BBB
from AccessControl.users import emergency_user
from AccessControl.users import UnrestrictedUser as Super
from AccessControl.users import _remote_user_mode
from AccessControl.users import absattr
from AccessControl.users import addr_match
Expand All @@ -34,7 +34,6 @@
from zope.deferredimport import deprecated



deprecated(
"User folders are no longer part of AccessControl, please depend "
"on Zope2 and import from OFS.userfolder or use the new minimal "
Expand Down

0 comments on commit dad72db

Please sign in to comment.