- 8608d91 Added the Python core headers Include/*.h and pyconfig.h as dependencies for the extensions in Modules/ by Christian Heimes · 17 years ago
- 543cabc setup.py doesn't pick up changes to a header file by Christian Heimes · 17 years ago
- 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 17 years ago
- 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 17 years ago
- 769d0ee Make the test more robust by trying to reconnect up to 3 times by Neal Norwitz · 17 years ago
- 9ec7bc3 More design notes by Raymond Hettinger · 17 years ago
- 9c6d81f Fix-up signature for approximation. by Raymond Hettinger · 17 years ago
- 7ea8225 Add one other review comment. by Raymond Hettinger · 17 years ago
- 921cb5d Mark todos and review comments. by Raymond Hettinger · 17 years ago
- a621674 Add support for copy, deepcopy, and pickle. by Raymond Hettinger · 17 years ago
- 909e334 More code cleanup. Remove unnecessary indirection to useless class methods. by Raymond Hettinger · 17 years ago
- 31eaafe News entry for r60265 (Issue 1920). by Amaury Forgeot d'Arc · 17 years ago
- 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 17 years ago
- 5310b69 Shorter pprint's for empty sets and frozensets. Fix indentation of frozensets. Add tests including two complex data structures. by Raymond Hettinger · 17 years ago
- 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 17 years ago
- 5b0e27e Add support for int(r) just like the other numeric classes. by Raymond Hettinger · 17 years ago
- 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 17 years ago
- 5a05364 Add support for trunc(). by Raymond Hettinger · 17 years ago
- 71dba4c Replace Py_BuildValue with PyTuple_Pack because it is faster. by Thomas Heller · 17 years ago
- e4c03e4 Use a PyDictObject again for the array type cache; retrieving items by Thomas Heller · 17 years ago
- eead05f News about recently fixed crashers: by Guido van Rossum · 17 years ago
- 70ec29d Revert 60189 and restore performance. by Raymond Hettinger · 17 years ago
- 7a6eacd Clean-up and speed-up code by accessing numerator/denominator directly. There's no reason to enforce readonliness by Raymond Hettinger · 17 years ago
- 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 17 years ago
- 4e3f124 Fi debug turd -- a call accidentally left out. by Guido van Rossum · 17 years ago
- d7cf32e Updated for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
- f38ba78 Added documentation for optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
- 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
- 97ef165 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
- 7b7ce78 Fix issue1789: The tutorial contained a misuse of the struct module. by Gregory P. Smith · 17 years ago
- 7070094 Fix the test_urllib2net failures that were caused by r58067. by Neal Norwitz · 17 years ago
- bf839e2 Fix the tests by restoring __import__. I think the test is still valid. by Neal Norwitz · 17 years ago
- f336c8b Cleanup by Raymond Hettinger · 17 years ago
- eb46190 Minor clean-up and more tests. by Raymond Hettinger · 17 years ago
- cf10926 Add first-cut at an approximation function (still needs rounding tweaks). Add continued fraction conversions. by Raymond Hettinger · 17 years ago
- 9acc387 Turn three recently fixed crashers into regular tests. by Guido van Rossum · 17 years ago
- f30ba3d There was an error on exit if no sys.exitfunc was defined. Issue 1647. by Kurt B. Kaiser · 17 years ago
- 6f4ee2d Fix misleading comment reported in issue #1917. by Guido van Rossum · 17 years ago
- b4aaa76 Could not open files in .idlerc directory if latter was hidden on Windows. by Kurt B. Kaiser · 17 years ago
- 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
- b2302ba Applied #1069410 by Christian Heimes · 17 years ago
- 082c9b0 Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support. by Christian Heimes · 17 years ago
- 964ca42 patch 1754489 by vlahan: by Armin Rigo · 17 years ago
- 501dbbf Use Py_TYPE() instead of ->ob_type by Christian Heimes · 17 years ago
- 66b4ab7 I'm tired of these tests breaking at Google due to our large number of by Guido van Rossum · 17 years ago
- c226c31 Let pprint() support sets and frozensets (suggested by David Mertz). by Raymond Hettinger · 17 years ago
- 2230bcf docstring and comment updates suggested by Giampaolo Rodola' by Gregory P. Smith · 17 years ago
- 2dec48d Improve variable name in sample code by Raymond Hettinger · 17 years ago
- 9ed5b57 Give zip() the same guarantee as izip() for left-to-right evaluation. by Raymond Hettinger · 17 years ago
- d02fc48 Fix for #1087741 patch. by Georg Brandl · 17 years ago
- 48c6293 Document when to use izip_longest(). by Raymond Hettinger · 17 years ago
- 74b8e76 Don't repeat yourself by Christian Heimes · 17 years ago
- 690c912 Fixed a missing (X) in define by Christian Heimes · 17 years ago
- 953e1ee Fix \xhh specs, #1889. by Georg Brandl · 17 years ago
- 95cd5c0 - Fix Issue #1703448: A joined thread could show up in the by Gregory P. Smith · 17 years ago
- 64c5677 Replace spam.acquire() try: ... finally: spam.release() with "with spam:" by Gregory P. Smith · 17 years ago
- c64386b accepts and closes issue #1221598: adds an optional callback to ftplib.FTP by Gregory P. Smith · 17 years ago
- 19d3afc Make's MAKEFLAGS variable is set to a string containing the single-letter by Brett Cannon · 17 years ago
- c09b94e Reformat some ugly code. by Georg Brandl · 17 years ago
- 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 17 years ago
- f00b38e Add the correct build dir when building with pydebug. by Georg Brandl · 17 years ago
- 898f187 Add a "const" to make gcc happy. by Georg Brandl · 17 years ago
- f2dae0e #1715: include sub-extension modules in pydoc text output. by Georg Brandl · 17 years ago
- dd76e05 Adapt to latest doctools refactoring. by Georg Brandl · 17 years ago
- 4a11a06 Follow PEP 8 in module docstring. by Walter Dörwald · 17 years ago
- fa13b5e Use original location of document, which has translations. by Georg Brandl · 17 years ago
- 26543b1 Add NEWS entry for #1882. by Georg Brandl · 17 years ago
- 38d1715 Issue #1882: when compiling code from a string, encoding cookies in the by Georg Brandl · 17 years ago
- 2bdc48c Updated to include news on recent logging fixes and documentation changes. by Vinay Sajip · 17 years ago
- 5016015 #1530959: change distutils build dir for --with-pydebug python builds. by Georg Brandl · 17 years ago
- 733024a Minor documentation change - hyperlink tidied up. by Vinay Sajip · 17 years ago
- e421691 Clarify $ behavior in re docstring. #1631394. by Georg Brandl · 17 years ago
- 1ea8cb4 #1726198: replace while 1: fp.readline() with file iteration. by Georg Brandl · 17 years ago
- af67f30 Fix old link. by Georg Brandl · 17 years ago
- 0751d1a Adapt pydoc to new doc URLs. by Georg Brandl · 17 years ago
- ae747dc Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski. by Vinay Sajip · 17 years ago
- aa0de3f #997912: acknowledge nested scopes in tutorial. by Georg Brandl · 17 years ago
- f8dd5b3 Removing bundlebuilder docs again -- it's not to be used anymore (see #779825). by Georg Brandl · 17 years ago
- d7e3e60 Add a stub for bundlebuilder documentation. by Georg Brandl · 17 years ago
- 864de82 #1555501: document plistlib and move it to the general library. by Georg Brandl · 17 years ago
- 960b186 Fix example. by Georg Brandl · 17 years ago
- 5ca3fd8 mmap is an extension module. by Georg Brandl · 17 years ago
- 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 17 years ago
- 3beae9b A bunch of header files were not listed as dependencies for object files. Changes to files like Parser/parser.h weren't picked up by make. by Christian Heimes · 17 years ago
- 66e7363 #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. by Georg Brandl · 17 years ago
- 2778c99 Provide a sanity check during PyThreadState_DeleteCurrent() and by Gregory P. Smith · 17 years ago
- 21297fa Fix markup. by Georg Brandl · 17 years ago
- 27f7ab7 #1219903: fix tp_richcompare docs. by Georg Brandl · 17 years ago
- 23bf837 Add blurb about executable scripts on Windows. #760657. by Georg Brandl · 17 years ago
- ef92802 Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute access. by Georg Brandl · 17 years ago
- 6f7e2d0 #1876: fix typos in test_operator. by Georg Brandl · 17 years ago
- 4872351 Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :) by Christian Heimes · 17 years ago
- 8584932 Fix test_pyclbr after urllib change. by Georg Brandl · 17 years ago
- 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 17 years ago
- 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago
- 92058d2 #652749: document the constants added to the builtins by site.py. by Georg Brandl · 17 years ago
- 440f2ff #799369: document possible sys.platform values. by Georg Brandl · 17 years ago
- d5e6cf2 #1664522: in urllib, don't read non-existing directories in ftp mode, by Georg Brandl · 17 years ago
- 2235011 #856047: respect the ``no_proxy`` env var when checking for proxies by Georg Brandl · 17 years ago
- 9b0d46d #1178141: add addinfourl.code to get http status code from urllib. by Georg Brandl · 17 years ago