- 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 22 years ago
- 68d8cef Implemented posix-mode parsing support in shlex.py, as dicussed in by Gustavo Niemeyer · 22 years ago
- e13ddc9 - New C API PyGC_Collect(), same as calling gc.collect(). by Guido van Rossum · 22 years ago
- cf8d285 Changes in support of PEP 269. by Guido van Rossum · 22 years ago
- c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 22 years ago
- bfe175c For StringVar results to strings. Document that boolean things are of by Martin v. Löwis · 22 years ago
- 76ba09f - super() no longer ignores data descriptors, except __class__. See by Guido van Rossum · 22 years ago
- 5688b7a Add two dictionaries to htmlentitydefs: name2codepoint maps by Walter Dörwald · 22 years ago
- 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 22 years ago
- 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 22 years ago
- 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 22 years ago
- 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 22 years ago
- efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 22 years ago
- de354b7 Added a note that the Mac OSA modules are documented. by Jack Jansen · 22 years ago
- f405064 - New function winsound.MessageBeep() wraps the Win32 API MessageBeep(). by Guido van Rossum · 22 years ago
- a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 22 years ago
- 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 22 years ago
- 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 22 years ago
- f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 22 years ago
- c377cbf SF bug #715145: unittest.py still uses != in failUnlessEqual by Raymond Hettinger · 22 years ago
- 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 22 years ago
- 1e469c5 Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError. by Walter Dörwald · 22 years ago
- 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 22 years ago
- a02b7a8 Added a note about scripting support and the IDE builtin help. by Jack Jansen · 22 years ago
- 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
- fa86bf5 Fix typo. by Walter Dörwald · 22 years ago
- 3163a3b Patch #545300: Support marked sections. by Martin v. Löwis · 22 years ago
- 89feabc The socket module now always uses the _socketobject wrapper class, even on by Skip Montanaro · 22 years ago
- b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
- 11cfbd6 Fix typo. by Walter Dörwald · 22 years ago
- 49754af Frank Vercruesse gave an okay on removing the copyright notice: by Jack Jansen · 22 years ago
- cf76be0 Added a Mac note that EasyDialogs dialogs now bring the application to by Jack Jansen · 22 years ago
- 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 22 years ago
- a0b3e6d add several people involved with PEP 305 and the csv package by Skip Montanaro · 22 years ago
- 64a839e announce csv package by Skip Montanaro · 22 years ago
- d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 22 years ago
- 5ddd4c3 Fixed SF bug #663074. The codec system was using global static by Gustavo Niemeyer · 22 years ago
- 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
- dcf6d2c Add Hye-Shik Chang for SF patch/bugreport #703471. by Thomas Wouters · 22 years ago
- 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
- d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 22 years ago
- 43ed43b Take out my (long since disabled) POSIX signal mask handling code. by Michael W. Hudson · 22 years ago
- d65ec37 Fix spelling. by Raymond Hettinger · 22 years ago
- 2c2d322 SF patch #667730: More DictMixin by Raymond Hettinger · 22 years ago
- 42182eb SF 698520: Iterator for urllib.URLOpener Contributed by Brett Cannon. by Raymond Hettinger · 22 years ago
- e5c691a - The extended type structure used for heap types (new-style by Guido van Rossum · 22 years ago
- a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 22 years ago
- 9589a25 Mention timeit.py. by Guido van Rossum · 22 years ago
- 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 22 years ago
- 12e2217 Fix SF #692416, don't crash interpreter for _tkinter.deletefilehandler by Neal Norwitz · 22 years ago
- 96b1c90 Patch #683592 revisited, after discussions with MvL: by Just van Rossum · 22 years ago
- ed6000a py-pdbtrack-grub-for-buffer(): Rectified some logic errors i by Ken Manheimer · 22 years ago
- f008998 Fix bug by Michael W. Hudson · 22 years ago
- ad428cd Guard advancing past leading meta-comments. by Ken Manheimer · 22 years ago
- e7aca52 Enhanced pdbtrack to provide for source code that's not findable by by Ken Manheimer · 22 years ago
- 44f14b0 SF bug 693121: Set == non-Set is a TypeError. by Tim Peters · 22 years ago
- 46d3dc3 - New function sys.exc_clear() clears the current exception. This is by Guido van Rossum · 22 years ago
- 6f177d4 Add news item for patch #695090 by Andrew M. Kuchling · 22 years ago
- 55b61d2 Fix SF bugs #692951 and 692988, test_timeout.py needs 'network' resource by Neal Norwitz · 22 years ago
- 2c92c6e Fix SF bug #690012 by Neal Norwitz · 22 years ago
- 4213e27 Added a note about EasyDialogs dialogs having become movable. by Jack Jansen · 22 years ago
- 46c9784 Patch #683592: unicode support for os.listdir() by Just van Rossum · 22 years ago
- 12fe72e note the demise of the dospath module (was actually in 2.3a2) by Skip Montanaro · 22 years ago
- 0f69833 2.3b1 patches by Guido van Rossum · 22 years ago
- deac2ac Added a note about MacOS.WMAvailable(). by Jack Jansen · 22 years ago
- 902a671 Deleting the 2.2 spec. by Guido van Rossum · 22 years ago
- 2ef777f RPM spec file for 2.3a2, contributed by Sean Reifschneider. by Guido van Rossum · 22 years ago
- 35892b9 Fix SF bug #691793, Python 2.3a2 build fails on Tru64 by Neal Norwitz · 22 years ago
- d5a65a7 Fix SF bug #689659, 64-bit int and long hash keys incompatible by Neal Norwitz · 22 years ago
- 61fe64d User requested changes to the itertools module. by Raymond Hettinger · 22 years ago
- 351a7dd Prepped for 2.3b1. by Guido van Rossum · 22 years ago
- 16c8517 Match parentheses. by Guido van Rossum · 22 years ago
- a003290 Merge in changes made to the 2.3a2 release. by Guido van Rossum · 22 years ago
- dd83cce fixed markup by David Goodger · 22 years ago
- 22e2f73 Update versions/dates for release of 2.3a2. Added some last-minute news. by Guido van Rossum · 22 years ago
- 2ffec02 Add a note about the recent PEP 293 changes. by Walter Dörwald · 22 years ago
- 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 22 years ago
- 162e38c - sys.path[0] (the directory from which the script is loaded) is now by Guido van Rossum · 22 years ago
- 5d44b34 Added a note that MacOSX applets can no longer be run from a terminal window. by Jack Jansen · 22 years ago
- 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 22 years ago
- 9e5d87f Reword section about moving variables to os.path to match intent (or by Michael W. Hudson · 22 years ago
- 251b816 Patch 686397: by Andrew MacIntyre · 22 years ago
- 9f70aab Added notes about pimp and bundlebuilder to the Mac section. by Jack Jansen · 22 years ago
- 4507ec7 - The audio driver tests (test_ossaudiodev.py and by Guido van Rossum · 22 years ago
- 1442dc1 Add SF reference to news item. by Guido van Rossum · 22 years ago
- 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
- 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
- c4f4ca9 Provide access to the import lock, fixing SF bug #580952. This is by Guido van Rossum · 22 years ago
- 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
- 48035eb SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
- a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 22 years ago
- 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 22 years ago
- eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 22 years ago
- e1ebd80 mention unicode file name support on OSX by Just van Rossum · 22 years ago
- 73ffb4a mention unicode support in compile, eval and exec by Just van Rossum · 22 years ago
- de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 22 years ago
- 9caf9c0 Add tests and news entry about parser errors from bug #678518. by Neal Norwitz · 22 years ago
- 573e033 Alphabetize some names Add Grant Olson for patch provided to fix bug #678518 by Neal Norwitz · 22 years ago
- 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
- c929636 Added a note about getting rid of macfs usage (MacPython). by Jack Jansen · 22 years ago