- f8741ea Add test for issue #999042, explict global statement works. by Neil Schemenauer · 17 years ago
- 8573d62 Fix broken test in test_hotshot. Treating the current directory as an by Neil Schemenauer · 17 years ago
- 8e5e438 Eliminated the need to use ttk.__loadtk__ and the problems related it. by Guilherme Polo · 17 years ago
- 5561986 Ivan on IRC in #twisted reported this crasher. by Armin Rigo · 17 years ago
- e20f54f Fix a number of Win32ErrorTests error cases. chmod wasn't being tested. 'access' never raises an error. by Kristján Valur Jónsson · 17 years ago
- 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 17 years ago
- d507afd Minor doc fixups. by Raymond Hettinger · 17 years ago
- fd4c872 issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. by Kristján Valur Jónsson · 17 years ago
- 2c8585b Register decimals as numbers.Number by Raymond Hettinger · 17 years ago
- d6fc262 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 17 years ago
- b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 17 years ago
- 3b331dd Restore Tkinter.Tk._loadtk so this test doesn't fail for problems by Guilherme Polo · 17 years ago
- de1a8b7 - Issue #5104: The socket module now raises OverflowError when 16-bit port and by Gregory P. Smith · 17 years ago
- f709ab8 Add an extra test for long <-> float hash equivalence. by Mark Dickinson · 17 years ago
- 1de05e9 check the errno in bad fd cases by Benjamin Peterson · 17 years ago
- b3619be make _tkinter._flatten check the result of PySequence_Size for errors #3880 by Benjamin Peterson · 17 years ago
- 707c593 Issue #2047: shutil.move() could believe that its destination path was by Antoine Pitrou · 17 years ago
- f779e6f Issue 4920: Fixed next() vs __next__() issues in the ABCs by Raymond Hettinger · 17 years ago
- b1a98de Issue #5083: New 'gui' resource for regrtest. by Guilherme Polo · 17 years ago
- 7a77ee8 * Renaming test_tk_* to test_ttk_* since that is what they are testing. by Guilherme Polo · 17 years ago
- cda93aa Added the ttk module. See issue #2983: Ttk support for Tkinter. by Guilherme Polo · 17 years ago
- 560f9a8 Add more tests for the powerset() recipe. by Raymond Hettinger · 17 years ago
- 2f6c2e0 More exhaustive combinatoric checks. by Raymond Hettinger · 17 years ago
- f93f303 Stronger tests for combinatoric relationships. by Raymond Hettinger · 17 years ago
- 2976aaa Add tests to verify combinatoric relationships. by Raymond Hettinger · 17 years ago
- d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 17 years ago
- 93881c6 Backport importlib in the form of providing importlib.import_module(). This has by Brett Cannon · 17 years ago
- 68d919e Improved itertools recipe for generating powerset(). by Raymond Hettinger · 17 years ago
- 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 17 years ago
- 1af3b5a Issue #4863, removing remaining bits by Tarek Ziadé · 17 years ago
- 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 17 years ago
- a3ecd2c Issue #1672332: Fix unpickling of subnormal floats, which was raising by Mark Dickinson · 17 years ago
- c187d11 Issue #5025: Fix occasional test_kqueue failure on OS X. by Mark Dickinson · 17 years ago
- 0dfcfc8 Issue #4710: Extract directories properly in the zipfile module; by Martin v. Löwis · 17 years ago
- 89e759d Add a test for UNC import paths, see issue 3677 by Kristján Valur Jónsson · 17 years ago
- 0a1f7b8 Tighten-up the docs for Counter(). by Raymond Hettinger · 17 years ago
- 4571f34 Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 17 years ago
- 7314b38 Issue 5009: multiprocessing: failure in manager._debug_info() by Jesse Noller · 17 years ago
- e741cc6 Issue #5008: When a file is opened in append mode with the new IO library, by Antoine Pitrou · 17 years ago
- 933d3a7 Issue 4998: __slots__ on Fractions was useless. by Raymond Hettinger · 17 years ago
- e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 17 years ago
- bad1eb2 Build-outs for Counter() class: by Raymond Hettinger · 17 years ago
- 1f01cd0 I'm sick of these deprecations warnings in test_os by Benjamin Peterson · 17 years ago
- 5539c78 make bad file descriptor tests more robust by Benjamin Peterson · 17 years ago
- 9a5b2ad Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check handle by Jesse Noller · 17 years ago
- 2e659ce Issue 4957 Let os.ftruncate raise OSError like documented. by Kristján Valur Jónsson · 17 years ago
- 5848d1f raise an OSError for invalid fds #4991 by Benjamin Peterson · 17 years ago
- 910f216 fix test that wasn't working as expected #4990 by Benjamin Peterson · 17 years ago
- 60e79ce issue 4293: make test_capi.py more robutst, it times out on some platforms, presumably waiting for threads. Lower the thread count to 16. by Kristján Valur Jónsson · 17 years ago
- 6ab2215 Resolve issue 4449: AssertionError in mp_benchmarks.py by Jesse Noller · 17 years ago
- 5e5fbb6 fix inspect.isclass() on instances with a custom __getattr__ #1225107 by Benjamin Peterson · 17 years ago
- f320c22 trying to find some fpathconf() settings that all unixs support... by Benjamin Peterson · 17 years ago
- b3af601 compare with == not is #4946 by Benjamin Peterson · 17 years ago
- 4f69b7e Make all the invalid fd tests for os subject to the function being available. by Kristján Valur Jónsson · 17 years ago
- 71ba215 Fix two test cases in test_os. ftruncate raises IOError unlike all the others which raise OSError. And close() on some platforms doesn't complain when given an invalid file descriptor. by Kristján Valur Jónsson · 17 years ago
- 0e15182 Comment typo by Mark Dickinson · 17 years ago
- e82cdae Issue #4397. Fix occasional test_socket failure on OS X. by Mark Dickinson · 17 years ago
- 8adc0b5 Fix recently introduced test cases. by Kristján Valur Jónsson · 17 years ago
- 018760e Re-enable all tests for windows platforms. by Kristján Valur Jónsson · 17 years ago
- afd112b Add tests for __init__() and update() with no args. by Raymond Hettinger · 17 years ago
- b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 17 years ago
- b24c951 Use assertRaises. by Georg Brandl · 17 years ago
- dd53e11 ast.literal_eval can properly evaluate complex numbers now. This fixes issue4907. by Armin Ronacher · 17 years ago
- aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 17 years ago
- a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
- f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
- 1c62b65 Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module. by Kristján Valur Jónsson · 17 years ago
- 3c43fcb Issue 4879: Allow buffering for HTTPResponse by Kristján Valur Jónsson · 17 years ago
- da62f81 Remove an unnecessary check from test_decimal. by Mark Dickinson · 17 years ago
- b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 17 years ago
- 0e2d8c3 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 17 years ago
- 5b913e3 Forward port r68394 for issue 4816. by Raymond Hettinger · 17 years ago
- 09cafb6 Use shutil.rmtree rather than os.rmdir. by Antoine Pitrou · 17 years ago
- e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 17 years ago
- f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 17 years ago
- fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 17 years ago
- f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 17 years ago
- 44e1581 Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 17 years ago
- 0238497e Fix for issue1594 by Ronald Oussoren · 17 years ago
- 733dc74 fill in actual issue number in tests by Antoine Pitrou · 17 years ago
- aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
- 6269fec #4228: Pack negative values the same way as 2.4 in struct's L format. by Georg Brandl · 17 years ago
- 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
- 7af6556 #4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
- fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
- 697ca3d Issue #4444: Allow assertRaises() to be used as a context handler. by Antoine Pitrou · 17 years ago
- 6425a2f Backport r67974: by Georg Brandl · 17 years ago
- 8d5934b #4748 lambda generators shouldn't return values by Benjamin Peterson · 17 years ago
- 6f193e0 Issue #4756: zipfile.is_zipfile() now supports file-like objects. by Antoine Pitrou · 17 years ago
- e57e999 Fix bogus unicode tests in pickletester. by Alexandre Vassalotti · 17 years ago
- f852bf9 Fix issue #4730: cPickle corrupts high-unicode strings. by Alexandre Vassalotti · 17 years ago
- 0fc0747 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. by Hirokazu Yamamoto · 17 years ago
- 54686e3 #4736 BufferRWPair.closed shouldn't try to call another property as a function by Benjamin Peterson · 17 years ago
- f205c13 As a result of a regression that snuck into 2.5.3 add a test case that by Skip Montanaro · 17 years ago
- f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 17 years ago
- 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 17 years ago
- d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 17 years ago
- 31949b9 #3954: Fix error handling code in _hotshot.logreader by Amaury Forgeot d'Arc · 17 years ago
- 6806001 Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by giving linecache access to the module globals when available by Nick Coghlan · 17 years ago
- cc5b64a modify other occurrence of test_bad_address by Antoine Pitrou · 17 years ago