- e78b92a added some tests for urlencode by Skip Montanaro · 24 years ago
- e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 24 years ago
- c955f89 docstring typo by Skip Montanaro · 24 years ago
- 6bd6835 I've been using gdb a lot lately -- I'm missing 'bt' as a command in by Guido van Rossum · 24 years ago
- 663f6c2 rewrite of robotparser.py by Bastian Kleineidam. Closes patch 102229. by Skip Montanaro · 24 years ago
- a5d23a1 modify urlencode so sequences in the dict are treated as multivalued by Skip Montanaro · 24 years ago
- a6c861f Fix comment. by Neil Schemenauer · 24 years ago
- f605606 Better error message if ucnhash cannot be found (obscure attribute by Fredrik Lundh · 24 years ago
- ebb195b Updating NEWS to match the current state of affairs. by Marc-André Lemburg · 24 years ago
- b0e754d Tim chastens: by Barry Warsaw · 24 years ago
- 71ff8d5 default_3way_compare(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
- 7f3e4ad SF patch #103336: Missing cast. by Tim Peters · 24 years ago
- 2ad1a44 When running the tests twice, stuck a "Press any key to continue ..." pause by Tim Peters · 24 years ago
- 9eca235 Various tweaks for Python 2.1a1. by Jack Jansen · 24 years ago
- c33a423 Treat an empty kwdict argument the same as a missing one. by Jack Jansen · 24 years ago
- 726d873 Undefine and redefine PRAGMA_ALIGN_SUPPORTED under Carbon. Apple's "solution" of a funny define makes portable code impossible:-( by Jack Jansen · 24 years ago
- c7050d9 Use #if TARGET_API_MAC_CARBON to determine carbon/classic macos, not #ifdef. by Jack Jansen · 24 years ago
- fe38525 Make the 'time' argument to the timemodule functions strftime, asctime, by Thomas Wouters · 24 years ago
- 5566c1c Fixed a bunch of typos caught by Gilles Civario. by Fred Drake · 24 years ago
- 0fe5af9 Clarify comments about returning None using a return without an expression; by Fred Drake · 24 years ago
- 0a5f91f Now that Marc-Andre has retracted unistr(), remove the tests. by Guido van Rossum · 24 years ago
- 48eb9cd A hack to augment sys.path with the build/lib.<platform> directory by Guido van Rossum · 24 years ago
- 2cfa980 Run tests twice by default, first time deleting .pyc/.pyo files. by Tim Peters · 24 years ago
- 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
- a8e14d4 Use a saner test filename, to work on Windows. by Guido van Rossum · 24 years ago
- 4bf9c20 Delete the bytecode from the library and tests before running the by Guido van Rossum · 24 years ago
- 75e0058 "make test" was still broken when building in a subdirectory: Andrew's by Guido van Rossum · 24 years ago
- ccc2e3d OK, checking in patch 103329. by Moshe Zadka · 24 years ago
- 2e9b396 Add some regression tests of coredump bugs in funcobject.c 2.31. Also by Barry Warsaw · 24 years ago
- 0395fdd Application and elaboration of patch #103305 to fix core dumps when by Barry Warsaw · 24 years ago
- 7c1e4bb gethash/cmpname both looked beyond the end of the character name. by Fredrik Lundh · 24 years ago
- 5458fcf Repair "selective cut-&-paste" screwup. by Tim Peters · 24 years ago
- a1374e4 Change verify() function to raise TestFailed, not AssertionError. by Guido van Rossum · 24 years ago
- e7c8732 GvR pointed out the correct way to check for statically built modules; by Andrew M. Kuchling · 24 years ago
- 10b0418 Bump __version__; add authorship note for the BaseServer patch. by Guido van Rossum · 24 years ago
- f5c9e86 Add Jason Tishler to the ACKS file by Andrew M. Kuchling · 24 years ago
- 989835c Patch #103220 from Jason Tishler: by Andrew M. Kuchling · 24 years ago
- ae89af9 Minor patch from Thomas Gellekum: by Andrew M. Kuchling · 24 years ago
- 95f1e6f new unicode name database (~160k) by Fredrik Lundh · 24 years ago
- 2acb54a improved the ucnhash test a bit by Fredrik Lundh · 24 years ago
- ee865c6 added "getcode" and "getname" methods to the ucnhash module (they're by Fredrik Lundh · 24 years ago
- d5d2cd1 Color all word instances of "as" after "import", & on the same line, as if by Tim Peters · 24 years ago
- 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 24 years ago
- a2bf270 Update the example DLL instructions for 2.1. Add example.def to the by Tim Peters · 24 years ago
- cc58363 urllib.py very recently changed to produce uppercase escapes, but no by Tim Peters · 24 years ago
- 8880f6d Whitespace normalization. by Tim Peters · 24 years ago
- 1a8a53d test_urllib is failing on Windows. I don't know why, but I can at least by Tim Peters · 24 years ago
- 983874d Use constructor form of "raise"; normalize <wink> docstrings. by Tim Peters · 24 years ago
- d93c0b6 Jeremy's patch #103323: trivial tests of all untested modules. by Tim Peters · 24 years ago
- 9d593a5 This still mentioned IdlePrefs.py as the place to edit color by Guido van Rossum · 24 years ago
- 1a34c87 make the output of _test() suitable for use in the regression test by Jeremy Hylton · 24 years ago
- e27a7b8 Anonymous SF bug 129288: "The python 2.0 urllib has %%%x as a format by Guido van Rossum · 24 years ago
- e1bb5f9 make error msg more informative when test of exec fails by Jeremy Hylton · 24 years ago
- 047e2c9 add test for SyntaxError on def f(a): global a by Jeremy Hylton · 24 years ago
- c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
- b4ed8c4 add test of bastion and rexec to std regression test suite by Jeremy Hylton · 24 years ago
- e36f778 This patch introduces an extra pass to the compiler that generates a by Jeremy Hylton · 24 years ago
- 19fe14e Derivative of patch #102549, "simpler, faster(!) implementation of string.join". by Tim Peters · 24 years ago
- e3d6e41 Revert a single line of my large change earlier today; this broke the ability by Andrew M. Kuchling · 24 years ago
- fc53c13 Checking in a slight variation of Barry's patch 103303. by Guido van Rossum · 24 years ago
- 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
- 90cb906 SF Patch #102980, by Luke Kenneth Casson Leighton: BaseServer class by Guido van Rossum · 24 years ago
- 3fa560b SF Patch #103188, by Donn Cave: BeOS/ar-fake support for extra libraries. by Guido van Rossum · 24 years ago
- 7150a77 SF Patch #103185, by jlt63: Some more standard modules cleanup for Cygwin by Guido van Rossum · 24 years ago
- 6915c4d Support building this as a DLL under Cygwin. by Guido van Rossum · 24 years ago
- fc5ce61 SF Patch #103250, by pj99: Optimize a strspn() out of startup. by Guido van Rossum · 24 years ago
- 2312024 Add test that ensures hash() of objects defining __cmp__ or __eq__ but by Guido van Rossum · 24 years ago
- 65e8bd7 Rich comparisons fallout: instance_hash() should check for both by Guido van Rossum · 24 years ago
- 0c6614c Add test that ensures hash([]) and hash({}) raise TypeError. by Guido van Rossum · 24 years ago
- 41c3244 Rich comparisons fallout: PyObject_Hash() should check for both by Guido van Rossum · 24 years ago
- a3af41d Changes to recursive-object comparisons, having to do with a test case by Guido van Rossum · 24 years ago
- 4e8db2e Since I'm about to check in a change to the recursion-detection code by Guido van Rossum · 24 years ago
- 95695e2 Patch #103313: Fixes "make test" by adding a little file named by Andrew M. Kuchling · 24 years ago
- 5bbc7b9 Patch from Barry: gets rid of two unused imports, by Andrew M. Kuchling · 24 years ago
- befc97c Clarifications. by Tim Peters · 24 years ago
- fbe7376 Sizable reorganization of how header and library files are found by Andrew M. Kuchling · 24 years ago
- bc0b260 Minor markup cleaning, and one required fix in the unistr() description. by Fred Drake · 24 years ago
- 697a0b0 Use openssl/*.h to include the OpenSSL header files by Andrew M. Kuchling · 24 years ago
- 2f1064c A dumb test for the dumdbm module. by Guido van Rossum · 24 years ago
- 890f209 Add test for comparing recursive data types. by Guido van Rossum · 24 years ago
- 1c2fb9c Make the original, makesetup-based, targets for building shared modules by Andrew M. Kuchling · 24 years ago
- 753a68e Bite the bullet: use rich comparisons here, too. by Guido van Rossum · 24 years ago
- 9710bd5 Add test for misbehaving rich comparisons (always returning 0) -- by Guido van Rossum · 24 years ago
- c4a6e8b Rich comparison tests by Guido van Rossum · 24 years ago
- ab782dd Document rich comparisons. by Guido van Rossum · 24 years ago
- 67345eb Updated for 2.1; removed references to BeOpen.com and PythonLabs. by Guido van Rossum · 24 years ago
- d94ade1 Add my name to the copyright notice. by Guido van Rossum · 24 years ago
- 71500c8 Add note about copyright ownership and license situation. by Guido van Rossum · 24 years ago
- a88479f - Add note about complex numbers. by Guido van Rossum · 24 years ago
- 9483bed correct typo - closes bug #129205 by Skip Montanaro · 24 years ago
- 3a9582f Fix the example (it didn't seem to reflect reality). by Ka-Ping Yee · 24 years ago
- 6f477a6 Remove build/ subdirectory in "clean" target, not "clobber" by Andrew M. Kuchling · 24 years ago
- 691e0e9 Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with getc(). by Tim Peters · 24 years ago
- 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 24 years ago
- d2bf3b7 Whitespace normalization. Leaving tokenize_tests.py alone for now. by Tim Peters · 24 years ago
- be4cbb1 Use rich comparisons to fulfill an old wish: complex numbers now raise by Guido van Rossum · 24 years ago
- 9d19cb8 Same treatment as listobject.c: by Guido van Rossum · 24 years ago
- b932420 Rich comparisons: by Guido van Rossum · 24 years ago
- f77bc62 Same treatment as listobject.c: by Guido van Rossum · 24 years ago
- 24f67d5 Fix a leak in instance_coerce(). This was introduced by Neil's by Guido van Rossum · 24 years ago