cpython/Lib
Georg Brandl 7410dd11ef #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. 2010-07-30 12:01:20 +00:00
..
ctypes Syntax cleanup. 2010-07-28 16:39:41 +00:00
curses
dbm #9397: remove mention of dbm.bsd which does not exist anymore. 2010-07-29 16:26:56 +00:00
distutils Ensure that the Makefile variable expansion 2010-07-23 09:43:17 +00:00
email Issue #4770: Restrict binascii module to accept only bytes (as specified). 2010-07-27 21:20:15 +00:00
encodings Merged revisions 81499,81506 via svnmerge from 2010-06-27 22:41:29 +00:00
html
http #9032: XML-RPC client: Transport.request() retries on EPIPE error 2010-07-24 02:24:55 +00:00
idlelib #9359: fix typo. Thanks to Piotr Kasprzyk for the patch. 2010-07-23 16:48:22 +00:00
importlib Add importlib benchmarks which try to be "realistic" by importing the decimal 2010-07-22 07:40:56 +00:00
json Syntax cleanup. 2010-07-28 16:39:41 +00:00
lib2to3 Merged revisions 81478,82530-82531 via svnmerge from 2010-07-04 16:44:15 +00:00
logging Merged revisions 80712,81651 via svnmerge from 2010-06-27 20:54:28 +00:00
msilib
multiprocessing
plat-aix4
plat-darwin
plat-freebsd4
plat-freebsd5
plat-freebsd6
plat-freebsd7
plat-freebsd8
plat-generic
plat-linux2
plat-netbsd1
plat-next3
plat-os2emx
plat-sunos5
plat-unixware7
pydoc_data
site-packages
sqlite3
test #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. 2010-07-30 12:01:20 +00:00
tkinter Issue #9384: python -m tkinter will now display a simple demo applet. 2010-07-27 14:16:32 +00:00
unittest Fix error message for comparing single line strings in unittest.TestCase.assertEqual. 2010-07-10 13:52:22 +00:00
urllib #4108: the first default entry (User-agent: *) wins. 2010-07-29 17:55:01 +00:00
wsgiref
xml #777884: make .normalize() do nothing for childless nodes, instead of raising an exception 2010-07-25 23:38:47 +00:00
xmlrpc #9032: XML-RPC client: Transport.request() retries on EPIPE error 2010-07-24 02:24:55 +00:00
__future__.py
__phello__.foo.py
_abcoll.py Issue #9137: Fix issue in MutableMapping.update, which incorrectly 2010-07-11 18:53:06 +00:00
_compat_pickle.py
_dummy_thread.py
_markupbase.py
_pyio.py
_strptime.py PEP 8 conformance: class_ -> cls 2010-07-14 13:46:57 +00:00
_threading_local.py
_weakrefset.py
abc.py
aifc.py
antigravity.py
argparse.py
ast.py allow byte literals 2010-07-11 23:06:06 +00:00
asynchat.py
asyncore.py #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa. 2010-07-28 08:19:35 +00:00
base64.py Fix failure introduced in r83182. 2010-07-28 00:23:21 +00:00
bdb.py #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. 2010-07-30 12:01:20 +00:00
binhex.py
bisect.py
build_class.py
cProfile.py
calendar.py
cgi.py
cgitb.py
chunk.py
cmd.py Remove redundant import. 2010-07-30 09:54:44 +00:00
code.py
codecs.py
codeop.py
collections.py
colorsys.py
compileall.py
configparser.py #1090076: explain the behavior of *vars* in get() better. 2010-07-29 14:17:12 +00:00
contextlib.py Issue 9110. Adding ContextDecorator to contextlib. This enables the creation of APIs that act as decorators as well as context managers. contextlib.contextmanager changed to use ContextDecorator. 2010-06-30 12:17:50 +00:00
copy.py
copyreg.py
csv.py
datetime.py Make python version of fromtimestamp behave more like C. 2010-07-26 02:36:41 +00:00
decimal.py Issue #9136: Profiling Decimal gave 'dictionary changed size during iteration'. 2010-07-08 21:15:36 +00:00
difflib.py
dis.py Issue 6507: accept source strings directly in dis.dis(). Original patch by Daniel Urban 2010-07-03 07:36:51 +00:00
doctest.py #5727: Restore the ability to use readline when calling into pdb in doctests. 2010-07-30 09:59:28 +00:00
dummy_threading.py
filecmp.py
fileinput.py
fnmatch.py Make fnmatch be more PEP 8 compliant. 2010-07-23 16:22:25 +00:00
formatter.py
fractions.py
ftplib.py
functools.py
genericpath.py
getopt.py Issue #4629: getopt raises an error if an argument ends with = whereas getopt 2010-07-24 00:49:20 +00:00
getpass.py
gettext.py
glob.py
gzip.py
hashlib.py
heapq.py Remove coding cookie from heapq.py. 2010-07-04 19:23:49 +00:00
hmac.py
imaplib.py
imghdr.py
inspect.py only take into account positional arguments count in related error messages 2010-06-25 19:30:21 +00:00
io.py
keyword.py
linecache.py
locale.py
macpath.py #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. 2010-06-25 10:56:11 +00:00
macurl2path.py
mailbox.py
mailcap.py
mimetypes.py
modulefinder.py
netrc.py
nntplib.py
ntpath.py Use augassign. 2010-07-23 08:46:35 +00:00
nturl2path.py
numbers.py
opcode.py
optparse.py
os.py #8603: Add environb to os.__all__ 2010-07-29 17:19:38 +00:00
os2emxpath.py #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. 2010-06-25 10:56:11 +00:00
pdb.py #809887: improve pdb feedback for breakpoint-related actions. Also add a functional test for these commands. 2010-07-30 12:01:20 +00:00
pickle.py Issue #9378: python -m pickle <pickle file> will now load and display 2010-07-27 23:02:38 +00:00
pickletools.py Syntax cleanup. 2010-07-28 16:39:41 +00:00
pipes.py
pkgutil.py
platform.py Fix for issue 7895. Avoid crashing the interpreter 2010-07-23 11:54:59 +00:00
plistlib.py
poplib.py
posixpath.py #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. 2010-06-25 10:56:11 +00:00
pprint.py
profile.py
pstats.py
pty.py
py_compile.py
pyclbr.py
pydoc.py Issue #9118: help(None) will now return NoneType doc instead of 2010-07-04 17:00:20 +00:00
queue.py
quopri.py
random.py
re.py The default size of the re module's compiled regular expression cache has 2010-07-27 05:31:29 +00:00
reprlib.py
rlcompleter.py
runpy.py
sched.py
shelve.py
shlex.py Revert -r82559; it's not clear that this is the right thing to do, and the change obscures the original intentions. 2010-07-04 20:07:09 +00:00
shutil.py
site.py Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from 2010-06-27 21:45:24 +00:00
smtpd.py Implementation for issue 4184 2010-07-24 09:51:40 +00:00
smtplib.py
sndhdr.py Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee. 2010-07-13 23:04:56 +00:00
socket.py remove SocketIO.__del__; close() can handle it 2010-07-09 18:28:25 +00:00
socketserver.py
sre_compile.py
sre_constants.py
sre_parse.py
ssl.py
stat.py
string.py #6630: allow customizing flags for compiling string.Template.idpattern. 2010-07-29 17:16:10 +00:00
stringprep.py
struct.py
subprocess.py Issue #9265: Incorrect name passed as arg[0] when shell=True 2010-07-19 14:20:53 +00:00
sunau.py
symbol.py
symtable.py
sysconfig.py Without this patch the value of sysconfig.get_config_var('LDSHARED') 2010-07-20 16:07:10 +00:00
tabnanny.py
tarfile.py Fix the breakage of Lib/tarfile.py on non-Windows platforms due to 2010-07-09 13:54:27 +00:00
telnetlib.py
tempfile.py
textwrap.py
this.py
threading.py Rip out old testing code that was inlined in threading. 2010-07-23 15:50:02 +00:00
timeit.py
token.py
tokenize.py
trace.py Issue #9323: Fixed a bug in trace.py that resulted in loosing the name 2010-07-21 17:43:42 +00:00
traceback.py
tty.py
turtle.py
types.py
uu.py
uuid.py Merged revisions 82276 via svnmerge from 2010-06-27 12:45:47 +00:00
warnings.py Merged revisions 77402,77505,77510 via svnmerge from 2010-06-28 00:01:59 +00:00
wave.py
weakref.py
webbrowser.py
wsgiref.egg-info
xdrlib.py
zipfile.py