We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13c73a9 + d6872dc commit 47a2dd0Copy full SHA for 47a2dd0
CHANGELOG.md
@@ -1,5 +1,16 @@
1
#Changelog
2
3
+## 7.0.6 (2015-12-05)
4
+### 修正
5
+* 2.x unicode 问题 by @hunter007
6
+* 上传重试判断
7
+
8
+### 增加
9
+* fsizeMin 上传策略
10
+* 断点上传记录 by @hokein
11
+* 计算stream etag
12
+* 3.5 ci 支持
13
14
## 7.0.5 (2015-06-25)
15
### 变更
16
* 配置up_host 改为配置zone
qiniu/__init__.py
@@ -9,7 +9,7 @@
# flake8: noqa
-__version__ = '7.0.5'
+__version__ = '7.0.6'
from .auth import Auth
qiniu/compat.py
@@ -43,10 +43,10 @@
43
numeric_types = (int, long, float) # noqa
44
45
def b(data):
46
- return data
+ return bytes(data)
47
48
def s(data):
49
50
51
def u(data):
52
return unicode(data, 'unicode_escape') # noqa
0 commit comments