- aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
- c64614e fixed the 64bits tests for get_platform() - mac osx by Tarek Ziadé · 16 years ago
- 0e4e732 Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds. by Ezio Melotti · 16 years ago
- 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 16 years ago
- f8a9402 This should fix the failure introduced in r77680. The error message is now different and it caused the test to fail. The failing test is not present in 2.5 so it is failing only on 2.6 and newer versions. by Ezio Melotti · 16 years ago
- a3112d1 Use // for floor division. by Mark Dickinson · 16 years ago
- 5a63348 Add two more test_strtod test values. by Mark Dickinson · 16 years ago
- 294d6ac Additional testcases for strtod. by Mark Dickinson · 16 years ago
- 4141d65 Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code by Mark Dickinson · 16 years ago
- 8926108 Revert debugprint code in r77607. by Gregory P. Smith · 16 years ago
- 8f6f426 Add a pydebug mode only debug print to help debug the errors in by Gregory P. Smith · 16 years ago
- 9179dab data descriptors do not override the class dictionary if __get__ is not defined by Benjamin Peterson · 16 years ago
- b01f5e6 #7730: remove spaces after functions names by Ezio Melotti · 16 years ago
- e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
- ab6ee7a Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. by Mark Dickinson · 16 years ago
- d87f22c Add better error reporting for MemoryErrors caused by str->float conversions. by Mark Dickinson · 16 years ago
- 811ff82 Issue #7632: Fix one more case of incorrect rounding for str -> float by Mark Dickinson · 16 years ago
- db983a7 Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk by Antoine Pitrou · 16 years ago
- c755dba Fix issue number in comment. by R. David Murray · 16 years ago
- 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 16 years ago
- ed44dfa Issue #1670765: Prevent email.generator.Generator from re-wrapping by R. David Murray · 16 years ago
- 667dc19 try to fix for windows by Benjamin Peterson · 16 years ago
- c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 16 years ago
- 3ffa43d The silencing of DeprecationWarning was not taking -3 into consideration. Since by Brett Cannon · 16 years ago
- efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 16 years ago
- fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 16 years ago
- 647ed91 Issue #7632: add tests for bugs fixed so far. by Mark Dickinson · 16 years ago
- 7a1b435 use more robust quoting by Benjamin Peterson · 16 years ago
- 5f76d13 Issue #7625: Add more tests that bytearray methods return new objects, by Antoine Pitrou · 16 years ago
- 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 16 years ago
- 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 16 years ago
- 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 16 years ago
- efa45f3 Issue #7654: enable additional bytes/bytearray tests. Patch by Florent Xicluna. by Antoine Pitrou · 16 years ago
- b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 16 years ago
- 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 16 years ago
- ae7731a module cleanup by Tarek Ziadé · 16 years ago
- 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
- dc0f487 Fixed #5372: .o files are now always rebuilt because file age test don't work in some case by Tarek Ziadé · 16 years ago
- b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 16 years ago
- e822ab0 fix test_popen when the path to python has spaces #7671 by Benjamin Peterson · 16 years ago
- 2e3da14 Fixed issue7648 - test_urllib2 fails on Windows if not run from C: by Senthil Kumaran · 16 years ago
- 9d87323 Update root certificate to CAcert. by Martin v. Löwis · 16 years ago
- 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 16 years ago
- ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 16 years ago
- e365613 Issue #7532: Add additional slicing test cases for new- and old-style by Mark Dickinson · 16 years ago
- aa7e51f bump version to 2.7a2 by Benjamin Peterson · 16 years ago
- c25417f Fixed #7617: all flavors of gcc should be recognized now by Tarek Ziadé · 16 years ago
- 5b77d6d Remove obsolete warning filters in regrtest.py (from issue #7092 -- patch by by Antoine Pitrou · 16 years ago
- 7a2ee0b Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration by Senthil Kumaran · 16 years ago
- 8015725 Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles by Antoine Pitrou · 16 years ago
- ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
- 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
- 3194d14 Backport some float repr tests that were missed in issue 7117. by Mark Dickinson · 16 years ago
- 0d423b8 Issue #7455: Fix possible crash in cPickle on invalid input. Patch by by Antoine Pitrou · 16 years ago
- 8904053 #5991: let completion for the "help" command include help topics. by Georg Brandl · 16 years ago
- 5089a38 Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class. by Georg Brandl · 16 years ago
- 202eb90 Add missing docstring for Context.divmod. Thanks Juan José Conti. by Mark Dickinson · 16 years ago
- 2b6e4bc add a test about hashing array.array by Benjamin Peterson · 16 years ago
- af45b11 Kill a couple of "<>" by Antoine Pitrou · 16 years ago
- b9d4963 Issue #7092: Fix the DeprecationWarnings emitted by the standard library by Antoine Pitrou · 16 years ago
- ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
- 673ddf9 Issue #7471: Improve the performance of GzipFile's buffering mechanism, by Antoine Pitrou · 16 years ago
- 49d709c Fix testSourceAddress to not test the host, it wasn't passing on some platforms. by Gregory P. Smith · 16 years ago
- 9d32521 issue3972: HTTPConnection and HTTPSConnection now support a by Gregory P. Smith · 16 years ago
- 79a3eb1 Adds an optional source_address parameter to socket.create_connection(). by Gregory P. Smith · 16 years ago
- 6dcdcde Import all implementations of the hash algorithms (OpenSSL & builtin) and run by Gregory P. Smith · 16 years ago
- 443ec68 Issue #3745: Undo the requirement for new buffer API only objects to be passed by Gregory P. Smith · 16 years ago
- b538d54 Remove silly conditional. by Antoine Pitrou · 16 years ago
- 83f86e8 Add tests for issue #7458: str.rfind() would crash when called with an invalid by Antoine Pitrou · 16 years ago
- 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 16 years ago
- 36f4214 Fix casing. by Georg Brandl · 16 years ago
- 1a635e4 remove use of deprecated os.popen #7619 by Benjamin Peterson · 16 years ago
- 1b34d25 Issue #5080: turn the DeprecationWarning from float arguments passed by Mark Dickinson · 16 years ago
- 8cdc9bc More yearly updates. by Georg Brandl · 16 years ago
- 763f1e8 indentation and further alignment with py3k by Ezio Melotti · 16 years ago
- 6d6b53c cleanup and refactoring by Ezio Melotti · 16 years ago
- df6f963 Merged revisions 77158 via svnmerge from by Benjamin Peterson · 16 years ago
- 0f02d39 check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) by Benjamin Peterson · 16 years ago
- 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
- 569e61f #5511: Added the ability to use ZipFile as a context manager. Patch by Brian Curtin. by Ezio Melotti · 16 years ago
- 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 16 years ago
- 8e3e1d6 Issue #7575: An overflow test for math.expm1 was failing on OS X 10.4/Intel, by Mark Dickinson · 16 years ago
- b598393 enable test_main.py by Benjamin Peterson · 16 years ago
- abb4274 Merged revisions 76871-76872,77093-77095,77097-77101 via svnmerge from by Benjamin Peterson · 16 years ago
- 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 16 years ago
- 02e7dfd #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. by Georg Brandl · 16 years ago
- e079636 Use a more idiomatic check in check_truediv. by Mark Dickinson · 16 years ago
- 4c96035 Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus failures on platforms with broken pow (e.g., Ubuntu/ia64). by Mark Dickinson · 16 years ago
- 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
- 13c2ef9 Fix for issue5625 - test_urllib2 fails - urlopen error file not on local host. by Senthil Kumaran · 16 years ago
- f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 16 years ago
- db69f01 Issue #7568: typo in docstring. Thanks Mike Putnam. by Mark Dickinson · 16 years ago
- 27cae34 allow Process name to be unicode #7571 by Benjamin Peterson · 16 years ago
- ca8e7ec Unittests and news items for the patch in r77026. by Ronald Oussoren · 16 years ago
- 92919a6 Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. by Ronald Oussoren · 16 years ago
- 728cc61 On OSX the output of "uname -m" always reflects the 32-bit architecture by Ronald Oussoren · 16 years ago
- 3293593 fix alleged refleak by Benjamin Peterson · 16 years ago
- 9f12d46 Fix possible integer overflow in lchown and fchown functions. For issue1747858. by Gregory P. Smith · 16 years ago
- 3efd767 backported r76993 and r76994 so the trunk behaves the same way with MSVC Manifest files editing by Tarek Ziadé · 16 years ago
- 2ba1e9c Issue #7553: test_long_future wasn't testing properly. Thanks Florent Xicluna by Mark Dickinson · 16 years ago