- 14f8899 C++ compiler cleanup: "typename" is a C++ keyword by Skip Montanaro · 19 years ago
- 1b04664 Change those parts of the Python-api that were functions in 2.4, and by Thomas Heller · 19 years ago
- 584b0e0 Whilespace normalization (reindint.py). by Tim Peters · 19 years ago
- 17a35f9 add info re: pydoc, pkgutil, and setuptools additions by Phillip J. Eby · 19 years ago
- e7670a3 fix typo by George Yoshida · 19 years ago
- 54ddd23 Split ``get_platform()`` into ``get_supported_platform()`` and by Phillip J. Eby · 19 years ago
- 9d89299 Fix refcounting. by Thomas Heller · 19 years ago
- a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 19 years ago
- 6db6782 Typo fix by Andrew M. Kuchling · 19 years ago
- 7e97ee6 A dictresize() attack. If oldtable == mp->ma_smalltable then pure by Armin Rigo · 19 years ago
- 15b1f14 add a very old crasher from the 2.1 -> 2.2 round of dictionary fixes. by Michael W. Hudson · 19 years ago
- 952f196 Add item by Andrew M. Kuchling · 19 years ago
- 816a162 C++ compiler cleanup: proper casts by Skip Montanaro · 19 years ago
- 2060d1b Comment typo fix by Andrew M. Kuchling · 19 years ago
- 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
- 041669f Whitespace normalization by Neal Norwitz · 19 years ago
- cea434c It's probably a good idea to actually *install* setuptools, too. ;) by Phillip J. Eby · 19 years ago
- 8f925cc Handle easy_install being run via -m with no __file__ if done from a zipfile. by Phillip J. Eby · 19 years ago
- 069159b Initial import of setuptools, with integrated tests. by Phillip J. Eby · 19 years ago
- e247e89 Finally figured out why this module did its imports at the by Tim Peters · 19 years ago
- 0969e8a At least test_threading_local doesn't leak any more. by Tim Peters · 19 years ago
- 742cd24 test_pyclbr goes nuts when a module contains code to try importing a class by Phillip J. Eby · 19 years ago
- 9582c14 correct function signature by Skip Montanaro · 19 years ago
- ceb3087 Second phase of refactoring for runpy, pkgutil, pydoc, and setuptools by Phillip J. Eby · 19 years ago
- b507972 C++ compiler cleanup: cast... by Skip Montanaro · 19 years ago
- 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 19 years ago
- 7ff54e7 C++ compiler cleanup: migrate to modsupport.h by Skip Montanaro · 19 years ago
- a0b6338 C++ compiler cleanup: cast signed to unsigned by Skip Montanaro · 19 years ago
- dd527fc reset errno before calling confstr - use confstr() doc to simplify checks afterwards by Skip Montanaro · 19 years ago
- 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
- 3fca463 C++ compile cleanup: proper declaration of _Py_BuildValue_SizeT by Skip Montanaro · 19 years ago
- 54e964d C++ compilation cleanup: Migrate declaration of by Skip Montanaro · 19 years ago
- c7605f2 local.__del__(): This didn't actually do anything, because of too by Tim Peters · 19 years ago
- ab1d245 First phase of refactoring for runpy, pkgutil, pydoc, and setuptools by Phillip J. Eby · 19 years ago
- 4be4e65 Add reindent target. by Martin v. Löwis · 19 years ago
- 1a00e18 Reindent. by Martin v. Löwis · 19 years ago
- f62eee1 Remove bogus character. by Martin v. Löwis · 19 years ago
- 70f5f7a Use GetModuleFileNameEx instead of GetProcessImageFileName, by Martin v. Löwis · 19 years ago
- bd30f52 Patch #790710: Add breakpoint command lists in pdb. by Martin v. Löwis · 19 years ago
- 297bf82 fix long option markup by George Yoshida · 19 years ago
- 59075eb disutils checks if MACOSX_DEPLOYMENT_TARGET is consistent with the value at by Ronald Oussoren · 19 years ago
- 0d660c0 Update status of document by Andrew M. Kuchling · 19 years ago
- f7823a3 Remove translated code hidden inside a comment environment; latex2html gets confused and includes half of it anyway by Andrew M. Kuchling · 19 years ago
- 6c10748 This patches fixes a number of byteorder problems in MacOSX specific code. by Ronald Oussoren · 19 years ago
- 749d070 Teach platform about darwin/x86 by Ronald Oussoren · 19 years ago
- ce8607d Revert to 45478, disable kill_python command for now. by Martin v. Löwis · 19 years ago
- c97c119 Check whether disk space is full. by Martin v. Löwis · 19 years ago
- 63d1f99 Rename binary again; increase noise; stop trying to actually kill the process. by Martin v. Löwis · 19 years ago
- 11e8b3c Rename binaries again; increase noise. by Martin v. Löwis · 19 years ago
- 98dbfab Rename binary to avoid conflicts with hanging processes on x86 w2k. by Martin v. Löwis · 19 years ago
- 5b3bf0d Try some tracing by Martin v. Löwis · 19 years ago
- 2d12372 Add kill_python command. by Martin v. Löwis · 19 years ago
- dfde91a Fix for a bug exposed by r45232: by Armin Rigo · 19 years ago
- 0e2cbab No need to cast a Py_ssize_t, use %z in PyErr_Format by Neal Norwitz · 19 years ago
- 4b16de4 Add a comment to explain why we are calling _cleanup() by Neal Norwitz · 19 years ago
- 00ac0d2 Try to stop the test from leaking and yet still work on windows by Neal Norwitz · 19 years ago
- c859b5c Remove unused field by Neal Norwitz · 19 years ago
- 7ebd1f8 Add some notes about a couple of poorly behaved tests by Neal Norwitz · 19 years ago
- 0f77da3 test_cmd_line should not leak any more, ensure an empty reflog file exists if no leaks are found by Neal Norwitz · 19 years ago
- cb0f66f Get test to consistently show no leaks by Neal Norwitz · 19 years ago
- 88c9784 No reason to export get_decomp_record, make static by Neal Norwitz · 19 years ago
- 1a26920 moduleName can be NULL by Neal Norwitz · 19 years ago
- aa220a7 Whitespace normalization. by Tim Peters · 19 years ago
- c5c9ce9 Add missing SVN eol-style property to text files. by Tim Peters · 19 years ago
- 715a4cd Use %zd instead of %i as format character (in call to PyErr_Format) for by Thomas Wouters · 19 years ago
- 0db2a98 Patch #1063914: Add clipboard_get. by Martin v. Löwis · 19 years ago
- 45bb98e Add item by Andrew M. Kuchling · 19 years ago
- 19ab6c9 Initialize structseq types only once. by Martin v. Löwis · 19 years ago
- d18d5a3 Update instructions for EXTRA_CFLAGS: configure ignores by Martin v. Löwis · 19 years ago
- de0a23f Describe contextlib module. (Done for today...) by Andrew M. Kuchling · 19 years ago
- d058d00 Write most of the 'writing context managers' section. I'd like comments on it, by Andrew M. Kuchling · 19 years ago
- cb28419 Make test_timeout not fail on systems with no dots in their fqdn. by Thomas Wouters · 19 years ago
- 767833d Make test_warnings play nice with regrtest -R:: now that regrtest doesn't by Thomas Wouters · 19 years ago
- 993633c Specialcase 'xs4all' (.nl/.net/.com/whatever else we have) as well as by Thomas Wouters · 19 years ago
- 631f513 This test no longer leaks, and test_generators sufficiently tests it to by Thomas Wouters · 19 years ago
- 195e4e6 Fix valgrind problem with invalid memory read by Neal Norwitz · 19 years ago
- 5b03065 Fix memory leak by Neal Norwitz · 19 years ago
- 035b185 err is no longer used by Neal Norwitz · 19 years ago
- b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 19 years ago
- 81b092d gen_del(): Looks like much this was copy/pasted from by Tim Peters · 19 years ago
- ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 19 years ago
- 60eab2b Consolidate 'leak_test1' and 'refleaks_tests', since they both test for the by Thomas Wouters · 19 years ago
- b3deb94 Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to by Thomas Wouters · 19 years ago
- c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
- 447d095 - Whitespace normalization by Thomas Wouters · 19 years ago
- 112d4ec Fix typo. by Thomas Heller · 19 years ago
- eb6f183 Fix for FreeBSD. Fixes http://python.org/sf/1470353. Looks like a libffi bug. by Thomas Heller · 19 years ago
- ab0e284 Zap ZAP. by Martin v. Löwis · 19 years ago
- 48bbaf2 Patch #1470875: Building Python with MS Free Compiler. by Martin v. Löwis · 19 years ago
- 73536e0 Remove partial change (don't edit, commit and think at the same time :P) by Thomas Wouters · 19 years ago
- 2742c5e Re-instate backward compatibility by defining Py_CLEAR if it isn't available. by Thomas Wouters · 19 years ago
- edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 19 years ago
- ed8f783 Clear dummy and emptyfrozenset, so that we don't have by Martin v. Löwis · 19 years ago
- 841747c Fix sys.getobjects(0): we get a reference to the by Martin v. Löwis · 19 years ago
- c597d1b Unlink the structseq type from the global list of by Martin v. Löwis · 19 years ago
- 4b501e6 Patch #1191700: Adjust column alignment in bdb breakpoint lists. by Martin v. Löwis · 19 years ago
- 7e75f1a Patch #1191065: Fix preprocessor problems on systems where recvfrom is a macro. by Martin v. Löwis · 19 years ago
- c90b17e Patch #1161914: Add python-config. by Martin v. Löwis · 19 years ago
- adcd25e frame_clear(): Explain why it's important to make the frame by Tim Peters · 19 years ago
- de2acf6 frame_traverse(): Use the standard Py_VISIT macro. by Tim Peters · 19 years ago