Ted

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年12月28日

摘要: 1 )python中可以用subprocess模块创建子进程,subprocess被用来替换一些老的模块和函数,如:os.system、os.spawn*、os.popen*、popen2.*、commands.*等2) 通过ConfigParser.SafeConfigParser读取配置文件setting.conf内容为:[section]key=value代码如下:#!/usr/bin/env python#coding=utf-8import subprocessfrom ConfigParser import SafeConfigParserclass Utility: @st... 阅读全文
posted @ 2011-12-28 01:31 wufawei 阅读(447) 评论(0) 推荐(0) 编辑

摘要: 1)使用 Python 进行线程编程, 研究了如何同时使用线程和队列在 Python 中完成线程编程。2) Queue— A synchronized queue classTheQueuemodule implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be exchanged safely between multiple threads. The Queueclass in this module im 阅读全文
posted @ 2011-12-28 00:21 wufawei 阅读(246) 评论(0) 推荐(0) 编辑