上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页
摘要: from __future__ import unicode_literals import os import pkgutil import sys from collections import OrderedDict, defaultdict from importlib import imp 阅读全文
posted @ 2018-11-08 16:02 十七楼的羊 阅读(667) 评论(0) 推荐(0) 编辑
摘要: fpga_type_mapping={ 'node_fpga_type':str, 'node_fpga_errors':int } fpga_field_mapping={ 'node_fpga_type':'type', 'node_fpga_errors':'errors', } @share 阅读全文
posted @ 2018-11-08 14:47 十七楼的羊 阅读(144) 评论(0) 推荐(0) 编辑
摘要: import os def test_create_file(tmpdir): p = tmpdir.mkdir("sub").join("hello.txt") p.write("content") # tmpdir.listdir() == [local('/tmp/pytest-of-root 阅读全文
posted @ 2018-11-07 15:25 十七楼的羊 阅读(251) 评论(0) 推荐(0) 编辑
摘要: #from jsonschema import validate def json_schema_validate(schema): def valieated_func(func): def _func(self, request, *args, **kwargs): try: validate( 阅读全文
posted @ 2018-11-06 12:21 十七楼的羊 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 什么是异常: 不是程序正常执行流程的事件称之为异常.异常处理的几种方式: 1,异常都是由异常处理器进行处理的.异常处理器分为默认的异常处理器,以及自定义的异常处理器。 2,如果异常触发,默认的异常处理器会进行堆栈追踪,找到异常情况发生的运行行以及函数清单,并且打印出出错信息. 3,自定义异常处理器是 阅读全文
posted @ 2018-11-04 18:02 十七楼的羊 阅读(388) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页