Skip to content

Commit 92340c8

Browse files
committed
Make upstr(upstr('abc')) much faster
1 parent 76000c3 commit 92340c8

File tree

6 files changed

+1370
-1265
lines changed

6 files changed

+1370
-1265
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ target/
6363

6464
.develop
6565
.install-deps
66+
67+
multidict/_multidict.html

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.2.0 (2016-08-16)
2+
------------------
3+
4+
* Make `upstr(upstr('abc'))` much faster
5+
6+
17
1.1.0 (2016-07-06)
28
------------------
39

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__all__ = ('MultiDictProxy', 'CIMultiDictProxy',
1111
'MultiDict', 'CIMultiDict', 'upstr', '__version__')
1212

13-
__version__ = '1.1.0'
13+
__version__ = '1.2.0'
1414

1515

1616
if bool(os.environ.get('MULTIDICT_NO_EXTENSIONS')):

0 commit comments

Comments
 (0)