代码搜索结果
找到约 10,000 项符合
Python 的代码
changelog
0.3.10: 1、修改自动下载功能无法使用的BUG。
2、修改编辑歌词时出现段错误的BUG。
0.3.9: 1、添加保存歌词到歌曲所在目录选项
2、修改再次打开配置窗口丢失字体设置的BUG。
0.3.8: 1、添加字体设置功能
2、添加记忆窗口边框是否显示功能
0.3.7: 1、添加显示窗口边框选项
2、修正获取歌词宽度不正确的Bug。
0.3.6: 添加鼠标调整时间功能
...
makefile
install:
python setup.py install
clean:
rm -Rf build
rm -f *.pyc hello.png
.PHONY: clean
doc098.htm
Development
Next
Up
Previous
Contents
Index
readme
This directory includes some useful codes:
1. subset selection tools.
2. parameter selection tools.
3. LIBSVM format checking tools
Part I: Subset selection tools
Introduction
============
Trainin
changelog
Change History of the Bayes Blocks library
------------------------------------------
This file contains a summary of all the changes since initial
released version 0.1.
bblocks-1.1.1 (2007-01-03)
-
readme
SIP - Python C/C++ Bindings Generator
The SIP documentation (including installation instructions) can be found in the
"doc" directory.
readme
This directory includes some useful codes:
1. subset selection tools.
2. parameter selection tools.
3. LIBSVM format checking tools
Part I: Subset selection tools
Introduction
============
Trainin
break.py
#!/usr/bin/env python
from pylab import *
gcf().text(0.5, 0.95,
'Distance Histograms by Category is a really long title')
show()
fill_between.py
#!/usr/bin/env python
from pylab import *
x1 = arange(0, 2, 0.01)
y1 = sin(2*pi*x1)
y2 = sin(4*pi*x1) + 2
# reverse x and y2 so the polygon fills in order
x = concatenate( (x1,x1[::-1]) )
y = conca