Skip to content

Commit

Permalink
Make upstr(upstr('abc')) much faster
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 16, 2016
1 parent 76000c3 commit 92340c8
Show file tree
Hide file tree
Showing 6 changed files with 1,370 additions and 1,265 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,5 @@ target/

.develop
.install-deps

multidict/_multidict.html
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.2.0 (2016-08-16)
------------------

* Make `upstr(upstr('abc'))` much faster


1.1.0 (2016-07-06)
------------------

Expand Down
2 changes: 1 addition & 1 deletion multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__all__ = ('MultiDictProxy', 'CIMultiDictProxy',
'MultiDict', 'CIMultiDict', 'upstr', '__version__')

__version__ = '1.1.0'
__version__ = '1.2.0'


if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):
Expand Down

0 comments on commit 92340c8

Please sign in to comment.