51Testing软件测试论坛

标题: Day3-5测试积点任务 [打印本页]

作者: lsekfe    时间: 2018-7-3 09:45
标题: Day3-5测试积点任务
问题:
对于 Python 中 email.header.Header () 这个类的理解有一点疑问,求大佬指教。
这是 Header()类:
  1. <font size="2">email.header.Header(s=None, charset=None, maxlinelen=None, header_name=None, continuation_ws=' ', errors='strict')</font>
复制代码

其中参数的含义理解如下:
s:标头的值,也就是对应 From、To、Subject 的值;
charset:字符集格式,默认是 ASCII,但是一般指定 UTF-8 格式以兼容更多字符;
header_name:标头名,就是 From、To、Subject、Time 等;

我的疑问就是:
1.maxlinelen 参数的含义是什么? 网上查找资料,对这个参数的描述解释是:最大行长度可以通过 maxlinelen 明确指定。为了将第一行拆分为较短的值(以考虑不包括在 s 中的字段报头,例如 Subject )传递 header_name 中的字段的名称。默认的 maxlinelen 是 78。 但是我不太理解,这个第一行是哪一行?还有这个参数对于邮件的具体影响在哪里?
2.continuation_ws 参数默认是空格,这个参数是拆分上面所说的第一行的时候用到的吗,具体是什么作用?

有点罗嗦,在网上实在找不到答案了,希望懂这个 email 模块的大神给点指教。万分感谢!!



作者: qqq911    时间: 2018-7-4 10:33
这个可以看下api里面对应的方法内容
作者: abcsell    时间: 2018-7-4 10:59
查询API文档,或者自己修改参数实验一下
作者: jingzizx    时间: 2018-7-4 12:39
建议查看原始API说明
作者: 梦想家    时间: 2018-7-4 15:12
email的 header构造方法,根据官网的描述:“ The maximum line length can be specified explicitly via maxlinelen. For splitting the first line to a shorter value (to account for the field header which isn’t included in s, e.g. Subject) pass in the name of the field in header_name. The default maxlinelen is 76, and the default value for header_name is None, meaning it is not taken into account for the first line of a long, split header.应该是在指定 header_name的前提下,限定当前字段(field) 值的最大长度,默认长度限制为76个 ASCII 字符长,通常是用在限制 Subject 的最大长度。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2