#!/usr/bin/env python
# python startup file
import sys
import readline
import rlcompleter
import atexit
import os
# tab completion
readline.parse_and_bind('tab: complete')
# history file
histfile = os.path.join(os.environ['HOME'], '.pythonhistory')
try:
readline.read_history_file(histfile)
except IOError:
pass
atexit.register(readline.write_history_file, histfile)
del os, histfile, readline, rlcompleter #for Linux

最新文章

  1. 模糊测试(fuzz testing)介绍(一)
  2. LightOj1007 - Mathematically Hard(欧拉函数)
  3. easyui的基本用法
  4. 查看CentOS版本方法
  5. [转载]C#中字典集合的两种遍历
  6. 服务器CPU使用率高的原因分析与解决办法
  7. webservice使用基本技巧
  8. matlab中的三维坐标系与旋转
  9. [Protractor] Getting Started With Protractor
  10. MyEclipse安装xfire插件
  11. MySQL--连接属性
  12. 一旦ORA-28000: the account is locked用户锁定故障排除
  13. 【Spring】装配Bean 组件扫描
  14. linux命令(shell)
  15. 【linux】awk相关
  16. 10.外观模式(Facade Pattern)
  17. The path is not a valid path to the xxx kernel header
  18. 《AngularJS权威教程》
  19. Python3入门(十)——调试与测试
  20. MikroTik RouterOS使用SATA光驱安装时提示:no CD-ROM found press ENTER to reboot

热门文章

  1. python中的实例方法、静态方法、类方法、类变量和实例变量
  2. Android ViewFlipper的使用分析
  3. 三大平衡树(Treap + Splay + SBT)总结+模板[转]
  4. IOS开发证书变成“此证书的签发者无效”解决方法
  5. OpenCV图像处理中常用函数汇总(1)
  6. sccm部署win7原版系统系统盘为D盘
  7. android浮动搜索框
  8. python 写入csv文件
  9. 重装系统(win7)
  10. iOS开发中你是否遇到这些经验问题