Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
D
din
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Joe Harman
din
Compare revisions
v0.3.2 to v0.4.0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
toejough/din
Select target project
No results found
v0.4.0
Select Git revision
Branches
issue.15.readme
master
Tags
branch-base.issue.15.readme
v0.1.0
v0.2.0
v0.3.0
v0.3.1
v0.3.2
v0.4.0
v0.5.0
10 results
Swap
Target
toejough/din
Select target project
toejough/din
1 result
v0.3.2
Select Git revision
Branches
issue.15.readme
master
Tags
branch-base.issue.15.readme
v0.1.0
v0.2.0
v0.3.0
v0.3.1
v0.3.2
v0.4.0
v0.5.0
10 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
resolves
#6
- frozen too slow
· fe30d300
Joe Harman
authored
6 years ago
fe30d300
version bump to 0.4.0 and changelog updates
· 8af338b5
Joe Harman
authored
6 years ago
8af338b5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG
+8
-0
8 additions, 0 deletions
CHANGELOG
din.py
+15
-5
15 additions, 5 deletions
din.py
test.py
+57
-1
57 additions, 1 deletion
test.py
version.py
+1
-1
1 addition, 1 deletion
version.py
with
81 additions
and
7 deletions
CHANGELOG
View file @
8af338b5
...
...
@@ -20,3 +20,11 @@
## Patch Updates
* restricts the callable exclusion so that attributes set with callables still
show up(resolves #5)
# 0.4.0 - frozen speedup
## Major Updates
* sped up frozen attribute setting (resolves #6)
* requires FrozenMixin users to use the new `self._thaw()` context manager
in `__init__` in order to set attributes, where before you could just set
them. If this change isn't made, AttributeErrors will start to be raised at
init time for FrozenMixin classes.
This diff is collapsed.
Click to expand it.
din.py
View file @
8af338b5
...
...
@@ -2,6 +2,7 @@
# [ Imports:Python ]
import
contextlib
import
copy
import
inspect
import
typing
...
...
@@ -304,12 +305,21 @@ class FrozenMixin:
say foo.my_string =
'
new
thing
'
, but you can do foo.my_list.append(
'
new
thing
'
).
"""
def __setattr__(self, name: str, value: typing.Any) -> None:
# i
f th
e caller is self.__init__, make the update
@contextlib.contextmanager
de
f
_
th
awed(self) -> typing.Iterator:
stack = inspect.stack()
caller = stack[1].frame.f_locals.get(
'
self
'
, None)
func = stack[1].function
if caller is self and func ==
'
__init__
'
:
caller = stack[2].frame.f_locals.get(
'
self
'
, None)
func = stack[2].function
if not (caller is self and func ==
'
__init__
'
):
raise RuntimeError(
"
Can only thaw from __init__!
"
)
object.__setattr__(self,
'
__is_thawed
'
, True)
try:
yield
finally:
object.__setattr__(self,
'
__is_thawed
'
, False)
def __setattr__(self, name: str, value: typing.Any) -> None:
if getattr(self,
'
__is_thawed
'
, False):
object.__setattr__(self, name, value)
return
# else, don
'
t
...
...
This diff is collapsed.
Click to expand it.
test.py
View file @
8af338b5
...
...
@@ -797,7 +797,8 @@ def test_independent_reprs() -> None:
class
_FrozenTestObject
(
din
.
FrozenMixin
):
def
__init__
(
self
)
->
None
:
super
().
__init__
()
self
.
my_string
=
'
original
'
with
self
.
_thawed
():
self
.
my_string
=
'
original
'
def
test_frozen
()
->
None
:
...
...
@@ -835,3 +836,58 @@ def test_copy_frozen() -> None:
assert
frozen
.
my_string
==
'
original
'
# the new object has the new value
assert
frozen_2
.
my_string
==
'
changed!
'
def
test_frozen_inheritance
()
->
None
:
# Given
# a frozen object
class
_Inherited
(
_FrozenTestObject
):
def
__init__
(
self
)
->
None
:
super
().
__init__
()
with
self
.
_thawed
():
self
.
additional_thing
=
"
set in init
"
frozen
=
_Inherited
()
# an expected error
expected_message
=
"
Can
'
t set additional_thing, because _Inherited is frozen.
"
# When
# an attribute is set
try
:
frozen
.
additional_thing
=
'
changed!
'
except
AttributeError
as
error
:
actual_message
=
str
(
error
)
# Then
# an attribute error is raised
assert
expected_message
==
actual_message
# the value didn't change
assert
frozen
.
my_string
==
'
original
'
# vulture
frozen
.
additional_thing
# pylint: disable=pointless-statement
def
test_frozen_bad_thaw
()
->
None
:
# Given
# a frozen object
class
_Inherited
(
_FrozenTestObject
):
def
update
(
self
)
->
None
:
with
self
.
_thawed
():
self
.
my_string
=
"
updated
"
frozen
=
_Inherited
()
# an expected error
expected_message
=
"
Can only thaw from __init__!
"
# When
# an attribute is set
try
:
frozen
.
update
()
except
RuntimeError
as
error
:
actual_message
=
str
(
error
)
# Then
# an attribute error is raised
assert
expected_message
==
actual_message
# the value didn't change
assert
frozen
.
my_string
==
'
original
'
This diff is collapsed.
Click to expand it.
version.py
View file @
8af338b5
...
...
@@ -2,7 +2,7 @@
# [ API ]
VERSION
=
'
0.
3.2
'
VERSION
=
'
0.
4.0
'
# [ Vulture ]
...
...
This diff is collapsed.
Click to expand it.