cpython/Doc/library
Martin v. Löwis 7c038b4726 merge 11164
2011-05-09 08:12:19 +02:00
..
2to3.rst
__future__.rst Merge 3.1 2011-04-27 16:27:38 +02:00
__main__.rst
_dummy_thread.rst
_thread.rst
abc.rst
aifc.rst
allos.rst
archiving.rst
argparse.rst
array.rst
ast.rst
asynchat.rst
asyncore.rst
atexit.rst
audioop.rst
base64.rst
bdb.rst
binascii.rst
binhex.rst
bisect.rst
builtins.rst
bz2.rst
calendar.rst
cgi.rst
cgitb.rst
chunk.rst
cmath.rst
cmd.rst
code.rst
codecs.rst
codeop.rst
collections.abc.rst
collections.rst
colorsys.rst
compileall.rst
concurrent.futures.rst
configparser.rst Style updates for the #11670 solution after post-commit review by Ezio Melotti: 2011-04-28 12:02:05 +02:00
constants.rst
contextlib.rst Issue #11647: allow contextmanager objects to be used as decorators as described in the docs. Initial patch by Ysj Ray. 2011-05-05 23:49:25 +10:00
copy.rst
copyreg.rst
crypt.rst
crypto.rst
csv.rst
ctypes.rst
curses.ascii.rst
curses.panel.rst
curses.rst
custominterp.rst
datatypes.rst
datetime.rst Mention that timezone is a subclass of tzinfo. 2011-05-04 10:28:26 -04:00
dbm.rst
debug.rst
decimal.rst
development.rst
difflib.rst
dis.rst
distutils.rst
doctest.rst
dummy_threading.rst
email-examples.rst
email.charset.rst
email.encoders.rst
email.errors.rst
email.generator.rst
email.header.rst
email.iterators.rst
email.message.rst
email.mime.rst
email.parser.rst
email.policy.rst
email.rst
email.util.rst
errno.rst
exceptions.rst
faulthandler.rst faulthandler: dump all threads by default 2011-05-07 12:43:00 +02:00
fcntl.rst
filecmp.rst
fileformats.rst
fileinput.rst
filesys.rst
fnmatch.rst
formatter.rst
fpectl.rst
fractions.rst
frameworks.rst
ftplib.rst #11072- applying http://bugs.python.org/review/11072/show suggestions 2011-05-07 16:06:59 +02:00
functional.rst
functions.rst
functools.rst
gc.rst
getopt.rst
getpass.rst
gettext.rst
glob.rst
grp.rst
gzip.rst
hashlib.rst
heapq.rst
hmac.rst
html.entities.rst
html.parser.rst
html.rst
http.client.rst
http.cookiejar.rst
http.cookies.rst
http.server.rst
i18n.rst
idle.rst
imaplib.rst Issue #8808: The IMAP4_SSL constructor now allows passing an SSLContext 2011-05-06 18:49:52 +02:00
imghdr.rst
imp.rst
importlib.rst
index.rst
inspect.rst
internet.rst
intro.rst
io.rst
ipc.rst
itertools.rst
json.rst
keyword.rst
language.rst
linecache.rst
locale.rst
logging.config.rst
logging.handlers.rst
logging.rst
macpath.rst
mailbox.rst
mailcap.rst
markup.rst
marshal.rst
math.rst note the point of having log2 2011-05-08 19:48:08 -05:00
mimetypes.rst
misc.rst
mm.rst
mmap.rst (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X 2011-05-02 01:11:33 +02:00
modulefinder.rst merge 11164 2011-05-09 08:10:38 +02:00
modules.rst
msilib.rst
msvcrt.rst
multiprocessing.rst #11952: merge with 3.2. 2011-04-29 07:13:12 +03:00
netdata.rst
netrc.rst
nis.rst
nntplib.rst
numbers.rst
numeric.rst
operator.rst
optparse.rst
os.path.rst
os.rst Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the 2011-05-08 01:46:11 +02:00
ossaudiodev.rst
othergui.rst
parser.rst
pdb.rst
persistence.rst
pickle.rst
pickletools.rst
pipes.rst
pkgutil.rst
platform.rst #11985: merge with 3.2. 2011-05-03 20:44:26 +03:00
plistlib.rst
poplib.rst
posix.rst
pprint.rst
profile.rst
pty.rst
pwd.rst
py_compile.rst
pyclbr.rst
pydoc.rst
pyexpat.rst
python.rst
queue.rst
quopri.rst
random.rst
re.rst
readline.rst
reprlib.rst
resource.rst
rlcompleter.rst
runpy.rst
sched.rst
select.rst
shelve.rst
shlex.rst
shutil.rst
signal.rst Issue #8407: The signal handler writes the signal number as a single byte 2011-05-08 02:03:15 +02:00
site.rst
smtpd.rst
smtplib.rst
sndhdr.rst
socket.rst
socketserver.rst
someos.rst
spwd.rst
sqlite3.rst
ssl.rst Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional 2011-05-09 00:42:58 +02:00
stat.rst
stdtypes.rst Merge with 3.2. 2011-05-09 04:00:47 +03:00
string.rst
stringprep.rst
strings.rst
struct.rst
subprocess.rst Fix #11961. Document STARTUPINFO and creation flag options. 2011-04-29 22:21:35 -05:00
sunau.rst
symbol.rst
symtable.rst
sys.rst Merge #11901: post-commit review fixes per Georg Brandl 2011-04-30 16:36:37 -04:00
sysconfig.rst
syslog.rst
tabnanny.rst
tarfile.rst
telnetlib.rst
tempfile.rst
termios.rst
test.rst Issue #11015: bring test.support docs up to date 2011-05-06 09:29:27 +03:00
textwrap.rst
threading.rst Issue #11223: Replace threading._info() by sys.thread_info 2011-04-30 14:53:09 +02:00
time.rst Issue #11930: Remove deprecated time.accept2dyear. 2011-05-02 12:20:52 -04:00
timeit.rst
tk.rst
tkinter.rst
tkinter.scrolledtext.rst
tkinter.tix.rst
tkinter.ttk.rst
token.rst
tokenize.rst
trace.rst
traceback.rst
tty.rst
turtle-star.pdf
turtle-star.png
turtle-star.ps
turtle.rst
types.rst
undoc.rst
unicodedata.rst
unittest.rst Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert. 2011-05-06 15:01:41 +03:00
unix.rst
urllib.error.rst
urllib.parse.rst
urllib.request.rst
urllib.robotparser.rst
uu.rst
uuid.rst
warnings.rst
wave.rst
weakref.rst
webbrowser.rst
windows.rst
winreg.rst
winsound.rst
wsgiref.rst Merge 3.1 2011-04-27 16:27:38 +02:00
xdrlib.rst
xml.dom.minidom.rst merge 11164 2011-05-09 08:10:38 +02:00
xml.dom.pulldom.rst
xml.dom.rst merge 11164 2011-05-09 08:10:38 +02:00
xml.etree.elementtree.rst
xml.sax.handler.rst
xml.sax.reader.rst
xml.sax.rst
xml.sax.utils.rst
xmlrpc.client.rst
xmlrpc.server.rst
zipfile.rst
zipimport.rst
zlib.rst