- a57773e Fix Issue #4875: find_library can return directories instead of files (on win32) by Thomas Heller · 16 years ago
- a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
- 929ab93 Issue #5933: Fix some gcc -Wextra warnings. Thanks Victor Stinner for by Mark Dickinson · 16 years ago
- 2c72420 Fixing issue5861 - test_urllib fails on windows. Agree to comment to have ':' in pathname2url as windows recognizes it. test_urllib passes now. by Senthil Kumaran · 16 years ago
- 588b54b Issue #5847: Remove -n switch on "Edit with IDLE" menu item. by Martin v. Löwis · 16 years ago
- cecdc9c Remove unused variable. by Georg Brandl · 16 years ago
- ba68a99 #5929: fix signedness warning. by Georg Brandl · 16 years ago
- 5815220 Fix overlong lines. by Georg Brandl · 16 years ago
- 4d4313d #5142: add module skipping feature to pdb. by Georg Brandl · 16 years ago
- e3869c4 Add a news entry for r72319. by Georg Brandl · 16 years ago
- 7c26d76 #1309567: fix linecache behavior of stripping subdirectories from paths when looking for relative filename matches. Also add a linecache test suite. by Georg Brandl · 16 years ago
- f71ba95 #5932: fix error return in _convertPyInt_AsSsize_t() conversion function. by Georg Brandl · 16 years ago
- ab538fc Update bdist_msi so that the generated MSIs for pure Python modules can install to any version of Python, like the generated EXEs from bdist_wininst. (Previously, you had to create a new MSI for each version of Python.) by Steven Bethard · 16 years ago
- 7c67b03 using sys._getframe(x), where x > 0 doesnt' work on IronPython by Benjamin Peterson · 16 years ago
- 7ba8e1c Fix issue 5890: (property subclass shadows __doc__ string) by inserting by R. David Murray · 16 years ago
- 97377bf Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when extracting a file to the root directory. by Antoine Pitrou · 16 years ago
- e3a3726 #5916, 5917: small socket doc improvements. by Georg Brandl · 16 years ago
- f5f045e #5927, 5928: typos. by Georg Brandl · 16 years ago
- 2ca9be4 #5925: fix highlighting of keyword table. by Georg Brandl · 16 years ago
- 2aabce7 Add Nick Barnes to ACKS. by Antoine Pitrou · 16 years ago
- 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 16 years ago
- 2827709 Fix typos. by Walter Dörwald · 16 years ago
- 406d7aa Issue #5913: os.listdir() should fail for empty path on windows. by Hirokazu Yamamoto · 16 years ago
- eeb51a9 cleanup applied patch to match style that is already in py3k branch. by Gregory P. Smith · 16 years ago
- d02eeda Issue #4751: For hashlib algorithms provided by OpenSSL, the Python by Gregory P. Smith · 16 years ago
- 342c8db There's no %A in Python 2.x! by Walter Dörwald · 16 years ago
- ed960ac Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call by Walter Dörwald · 16 years ago
- 01fce5a Don't use PyOS_strnicmp for NaN and Inf detection: it's locale-aware. by Mark Dickinson · 16 years ago
- 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 16 years ago
- 85e269b Remove unnecessary uses of context in PyGetSetDef. See issue #5880. by Mark Dickinson · 16 years ago
- 4bd7664 docstring update. by Gregory P. Smith · 16 years ago
- 9ac3ee6 Optimization: move RFC defined network constant construction out of by Gregory P. Smith · 16 years ago
- 6493d78 Issue 5379 - applies patch supplied by philipp hagemeister to fix by Gregory P. Smith · 16 years ago
- 62e9a65 Further development of issue5559, handle Windows files by Kurt B. Kaiser · 16 years ago
- 106ac46 idle.py modified and simplified to better support by Kurt B. Kaiser · 16 years ago
- 07ef487 by Michael Foord · 16 years ago
- 7430989 Isue #5084: unpickling now interns the attribute names of pickled objects, by Antoine Pitrou · 16 years ago
- 2b42c29 add myself by Benjamin Peterson · 16 years ago
- e2fb98f Add addCleanup and doCleanups to unittest.TestCase. by Michael Foord · 16 years ago
- 420d4eb #1607951: Make mailbox.Maildir re-read the directories less frequently. by Andrew M. Kuchling · 16 years ago
- 6e7bdde Convert test method names to PEP8 style. by Gregory P. Smith · 16 years ago
- d4b5c98 Remove unnecessary use of context for long getters. (Related to issue #5880). by Mark Dickinson · 16 years ago
- bf6c410 revert unrelated change by Benjamin Peterson · 16 years ago
- 6282169 remove py3k compat code by Benjamin Peterson · 16 years ago
- 92b9700 Add items by Andrew M. Kuchling · 16 years ago
- d7e8e34 don't let sys.argv be used in the tests by Benjamin Peterson · 16 years ago
- 829f6b8 Adds an exit parameter to unittest.main(). If False main no longer by Michael Foord · 16 years ago
- 27f204d Keep py3k and trunk code in sync. by Eric Smith · 16 years ago
- 24cc78a Fix directive name. by Georg Brandl · 16 years ago
- b64b827 Review ipaddr docs and add them in the TOC under "Internet protocols". by Georg Brandl · 16 years ago
- 3fd4ea9 Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully. by Antoine Pitrou · 16 years ago
- 1fc0231 Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an by Antoine Pitrou · 16 years ago
- 1d49926 Adds the ipaddr module to the standard library. Issue #3959. by Gregory P. Smith · 16 years ago
- 6733bed Make test.test_support.EnvironmentVarGuard behave like a dictionary. by Walter Dörwald · 16 years ago
- ca87fa5 #5889: remove comma at the end of a list that some C compilers don't like. by Georg Brandl · 16 years ago
- 4af40d2 Fix for Issue1648102, based on the MSDN spec: If this parameter specifies the by Senthil Kumaran · 16 years ago
- b01c6e5 Make the turtle.rst doctests pass. I have a feeling there should be by R. David Murray · 16 years ago
- 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
- 2518d3c prevent ref cycles by removing bound method on close() by Benjamin Peterson · 16 years ago
- 7c7250d make sure to close file by Benjamin Peterson · 16 years ago
- a9b4d47 make sure mode is removable while cleaning up test droppings by Benjamin Peterson · 16 years ago
- 8c5326f #5878: fix repr of re object. by Georg Brandl · 16 years ago
- 9c6fc51 fix test_shutil on ZFS #5676 by Benjamin Peterson · 16 years ago
- 61a0d05 Backport some of the float formatting tests from py3k. by Mark Dickinson · 16 years ago
- df108ca Remove format_float and use _PyOS_double_to_string instead. by Mark Dickinson · 16 years ago
- 92fcc9c Issue #5864: format(1234.5, '.4') gives misleading result by Mark Dickinson · 16 years ago
- 867475c run autoconf by Benjamin Peterson · 16 years ago
- 0f457e5 More aifc tests. by R. David Murray · 16 years ago
- 61dbdb9 - configure.in: Don't error, when no --with-dbmliborder option is present by Matthias Klose · 16 years ago
- 51c614e - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify by Matthias Klose · 16 years ago
- 10cbe48 - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify by Matthias Klose · 16 years ago
- 971b1b1 Now that we've got a test_aifc, add a few tests. by R. David Murray · 16 years ago
- 25b4add Fix issue 2245. aifc now skips any chunk type it doesn't actually by R. David Murray · 16 years ago
- a1b91d9 Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore by Tarek Ziadé · 16 years ago
- f6dab95 Make the doctests in the docs pass, except for those in the turtle module. by Georg Brandl · 16 years ago
- 90c61a2 Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mips by Thomas Heller · 16 years ago
- 3b23c9c Remove spurious 'u'. by R. David Murray · 16 years ago
- 636b23a Various small fixups to the multiprocessing docs, mostly fixing and by R. David Murray · 16 years ago
- 94cc00c Silence warning on Windows. by Eric Smith · 16 years ago
- e988e28 Issue #1734234: Massively speedup `unicodedata.normalize()` when the by Antoine Pitrou · 16 years ago
- 8b8f8cc Add example to the seealso section. by Raymond Hettinger · 16 years ago
- a016deb Update spec version number. by Raymond Hettinger · 16 years ago
- f2651e1 Issue #5853: calling a function of the mimetypes module from several threads by Antoine Pitrou · 16 years ago
- cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 16 years ago
- ec047e0 Make sys.xxx variable references into links, note that print_last only by R. David Murray · 16 years ago
- 2622b54 #5840: dont claim we dont support TLS. by Georg Brandl · 16 years ago
- 9bc6682 #5848: small unittest doc patch. by Georg Brandl · 16 years ago
- b44c9f3 Demote warnings to notices, part 2: stuff that is 2.x-only. by Georg Brandl · 16 years ago
- 16a57f6 Demote warnings to notices where appropriate, following the goal that as few "red box" warnings by Georg Brandl · 16 years ago
- d91f8cf Remove ".. warning::" markup that doesnt contain warnings for users, rather todo items. by Georg Brandl · 16 years ago
- e1b79ce #5856: fix typo s in traceback example. by Georg Brandl · 16 years ago
- e34d6aa Issue #5854: Updated __all__ to include some missing names and remove some names which should not be exported. by Vinay Sajip · 16 years ago
- 94290d3 Right click 'go to file/line' not working if spaces in path. Bug 5559. by Kurt B. Kaiser · 16 years ago
- 4b965f6 Use test.test_support.EnvironmentVarGuard where tests change environment vars. by Walter Dörwald · 16 years ago
- e73cbe7 Fix typo in function name by Mark Dickinson · 16 years ago
- 4c69da2 Fix typo. by Walter Dörwald · 16 years ago
- 6d6b220 Backport r71967 changes from py3k to trunk. by Mark Dickinson · 16 years ago
- 944c6ae Reset errno before both calls to PyOS_ascii_strtod, not just one. by Mark Dickinson · 16 years ago
- f254aab Note that the caller is resposible for freeing the result of PyOS_double_to_string. by Eric Smith · 16 years ago
- d40fb70 Update pydoc topics. by Georg Brandl · 16 years ago