- 5d2b77c Make dir() wordier (see the new docstring). The new behavior is a mixed by Tim Peters · 23 years ago
- 95c99e5 Made a doctest out of the examples in Guido's type/class tutorial. by Tim Peters · 23 years ago
- 25786c0 Make dictionary() a real constructor. Accepts at most one argument, "a by Tim Peters · 23 years ago
- aa78236 Whitespace normalization (tabs -> 4 spaces) in the Mac expectations. by Guido van Rossum · 23 years ago
- a0adb92 Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0 by Guido van Rossum · 23 years ago
- 8031bbe Allow for the possibility that globals['__name__'] does not exist; by Guido van Rossum · 23 years ago
- bfa47b0 Correct name mangling algorithm, and add a comment. by Guido van Rossum · 23 years ago
- 54a14a3 SF bug #456621: normpath on Win32 not collapsing c:\\.. by Tim Peters · 23 years ago
- 91ee798 metaclass(): add some more examples of metaclasses, including one by Guido van Rossum · 23 years ago
- d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
- 71ebc33 Fix _convert_NAME() so that it doesn't store locals for class bodies. by Jeremy Hylton · 23 years ago
- caa9f43 Add testcases for inheritance from tricky builtins (numbers, strings, tuples). by Guido van Rossum · 23 years ago
- 702ca4f Revert the previous patch to test_pow.py and move the test to test_unary.py by Fred Drake · 23 years ago
- d256271 Added a regression test for the negation-of-exponentiation optimization by Fred Drake · 23 years ago
- f71b5fe spurious pop by Jeremy Hylton · 23 years ago
- 60250e2 win_getpass(): if sys.stdin is not sys.__stdin__, use by Guido van Rossum · 23 years ago
- 6923234 Add a new function imp.lock_held(), and use it to skip test_threaded_import by Tim Peters · 23 years ago
- 69374e4 Flush output more aggressively. This makes things look better if by Neil Schemenauer · 23 years ago
- e4685ec Track the block stack more reasonably in order to handle continue in by Jeremy Hylton · 23 years ago
- 9263848 Improve stack depth computation for try/except and try/finally by Jeremy Hylton · 23 years ago
- 4bd4ddd Add __getitem__() handler for use by visitContinue() by Jeremy Hylton · 23 years ago
- 1936745 Generate SET_LINENO for list and tuple literals when the open paren by Jeremy Hylton · 23 years ago
- 7845cf8 Make sure that atoms (Tuple, List, etc.) have lineno attributes by Jeremy Hylton · 23 years ago
- 4ba9001 Fix off-by-one errors in code to find depth of stack. by Jeremy Hylton · 23 years ago
- 8779787 Workaround by Tim Peters to skip this test if run from test.autotest, by Jack Jansen · 23 years ago
- bf77c46 Undo change from list to dict for handling varnames, consts, etc. by Jeremy Hylton · 23 years ago
- 5a9ac97 Change default() to use getChildNodes() instead of getChildren() by Jeremy Hylton · 23 years ago
- 94afe32 Support // and //= by Jeremy Hylton · 23 years ago
- 7abf520 Add support for // and //=. by Jeremy Hylton · 23 years ago
- d4be10d Add generator detection to symbol table. by Jeremy Hylton · 23 years ago
- e4e9cd4 Modify name conversion to be (hopefully) a bit more efficient. by Jeremy Hylton · 23 years ago
- 5477f52 Revise implementations of getChildren() and getChildNodes(). by Jeremy Hylton · 23 years ago
- 96d68d5 Add opcodes for floor division and true division (PEP 238) by Jeremy Hylton · 23 years ago
- 4de8df9 Add tests for augmented floor division by Jeremy Hylton · 23 years ago
- da8db8c Don't include doc string of class in its code child by Jeremy Hylton · 23 years ago
- 8aea0cc Now that int is subclassable, have to change a test that tests for by Guido van Rossum · 23 years ago
- 8211237 marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit by Tim Peters · 23 years ago
- 19ef62d pickle.py, load_int(): Match cPickle's just-repaired ability to unpickle by Tim Peters · 23 years ago
- 08f9956 Update an email address. by Barry Warsaw · 23 years ago
- ce129a5 Fix the test again due to fewer calls to __getattr__. by Guido van Rossum · 23 years ago
- a5be8ed Fix one test to reflect the change in method lookup policy. by Guido van Rossum · 23 years ago
- 2ac9c3e Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop are by Jeremy Hylton · 23 years ago
- 63db7b9 XXX_NAME ops should affect varnames by Jeremy Hylton · 23 years ago
- f354575 Generate FOR_ITER-based loops instead of old FOR_LOOP-based loops by Jeremy Hylton · 23 years ago
- 318e167 FOR_ITER is a jrel_op() not a plain old def_op() by Jeremy Hylton · 23 years ago
- 49a806e Added list of tests expected to be skipped on the mac. by Jack Jansen · 23 years ago
- c59e220 Handle private names by Jeremy Hylton · 23 years ago
- 535c524 A quick hack to make the test pass on the Mac (similar to the quick hack by Jack Jansen · 23 years ago
- 80ea40d emit SET_LINENO for augmented assignments by Jeremy Hylton · 23 years ago
- 2afff32 Many changes -- bug fixes and sundry improvements by Jeremy Hylton · 23 years ago
- 9f44815 Fix another test still expecting overflow on big int literals. by Tim Peters · 23 years ago
- c15a828 Change test_overflow to test_no_overflow; looks like big int literals by Tim Peters · 23 years ago
- cd8a127 Fix for sibling nodes that define the same free variable by Jeremy Hylton · 23 years ago
- 7e30c9b Add lookup_name() to optimize use of stack frames by Jeremy Hylton · 23 years ago
- 058a5ad Two changes to visitor API: by Jeremy Hylton · 23 years ago
- 6d8c1aa Add content-type header to ftp URLs (SF patch #454553) by Jeremy Hylton · 23 years ago
- 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
- e259e59 Patch by Bill Noon: added 'dylib' as a library type along with by Jack Jansen · 23 years ago
- ea46fa8 Undo previous checkin -- Barry fixed it better. by Guido van Rossum · 23 years ago
- d320ad0 Update test output to match new (more informative) error message about by Guido van Rossum · 23 years ago
- 1914873 Quick and dirty fix for test_extcall failures trigged by Guido's by Barry Warsaw · 23 years ago
- 70d4491 Remove the local 'getset' class -- this is now a built-in type with by Guido van Rossum · 23 years ago
- 1e2775f Rip the import repr truncation test out of here and put it in test_repr.py by Barry Warsaw · 23 years ago
- 0bcf6d8 Added lots of tests for reprs of "simple" objects, such as file, by Barry Warsaw · 23 years ago
- 16c018d Repair repr of future-features (wasn't updated to include the new by Tim Peters · 23 years ago
- 9881fc1 supers(): typo -- "if verify" should be "if verbose". by Guido van Rossum · 23 years ago
- c4a1880 Add test suite for super(). by Guido van Rossum · 23 years ago
- 76f0cb8 Add a test for the new getset type. by Guido van Rossum · 23 years ago
- 833a8d8 SF patch #454553 by Walter Dörwald: add content-type to FTP URLs, like by Guido van Rossum · 23 years ago
- 8967507 Back out trying to use the C values for CO_xxx. by Tim Peters · 23 years ago
- 4e2fbce Looks like someone forgot the change the expected output file. by Tim Peters · 23 years ago
- a365309 Add a test for the new // operator too. by Tim Peters · 23 years ago
- 26c7fa3 SF bug [#454456] int overflow code needs tests. by Tim Peters · 23 years ago
- f17efb9 Patch #449054 to implement PEP 250. The standard install directory for by Greg Ward · 23 years ago
- 971e069 Remove test_long's expected-output file. by Tim Peters · 23 years ago
- c266bb0 untabification by Fredrik Lundh · 23 years ago
- 78eedce updated to current PythonWare version (1.0b3). fixed type checks in by Fredrik Lundh · 23 years ago
- 84cc9bf Committing and closing SF patch #441348 to help Jython to pass this test. by Finn Bock · 23 years ago
- 88e0b5b SF patch #454553 by Walter Dörwald: auto-guess content-type header for ftp urls. by Guido van Rossum · 23 years ago
- be92af0 Don't make even the _slightest_ modification between test and checkin, by Jack Jansen · 23 years ago
- 0eb936b The MacOS module may be available on Mac OS X, but it doesn't have a SchedParams() method, and there's no need to call it anyway. by Jack Jansen · 23 years ago
- 83b120d Turn OverflowWarning into an error locally, in order to make the by Guido van Rossum · 23 years ago
- acc21d8 Ignore OverflowWarning by default. To enable the warning, use by Guido van Rossum · 23 years ago
- 60f0188 Merge changes from r22a2-branch back into trunk. Also, change patch by Barry Warsaw · 23 years ago
- 8320597 Enhancements: by Ka-Ping Yee · 23 years ago
- d1ed15e A test of SSL support, using a roundabout method suggested by Guido. by Barry Warsaw · 23 years ago
- 7fdfc38 Use test_support.requires() to decide whether additional largefile by Barry Warsaw · 23 years ago
- 08fca52 Removed --have-resources flag in favor of the more granular -u/--use by Barry Warsaw · 23 years ago
- c0fb605 use_large_resources => use_resources by Barry Warsaw · 23 years ago
- 7c005af Whitespace normalization. by Tim Peters · 23 years ago
- 02035bc Test failed because these was no expected-output file, but always printed by Tim Peters · 23 years ago
- 029acfb Deal more appropriately with bare ampersands and pointy brackets; this by Fred Drake · 23 years ago
- 18da1e1 Add test case to cover multiple future statements on separate lines of a module. by Jeremy Hylton · 23 years ago
- 8471a35 Fix SF bug [ #450245 ] Error in parsing future stmts by Jeremy Hylton · 23 years ago
- 07d8d64 Committing and closing SF patch #403671 by Finn Bock to help Jython by Barry Warsaw · 23 years ago
- 4533f60 add a few test cases for threading module. by Skip Montanaro · 23 years ago
- e428bb7 Added new BoundedSemaphore class. Closes bug 452836. by Skip Montanaro · 23 years ago
- a7fc21b Silence warnings during test_os by Jeremy Hylton · 23 years ago
- 29bb115 Clean up some argument profiles, enrich the docstring. by Eric S. Raymond · 23 years ago
- ae8454a of course I muffed it separating the notes code from the initial_value by Skip Montanaro · 23 years ago