Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #5841: add deprecation py3k warning and notice in the docs for commands module. | Georg Brandl | 2009-04-25 | 1 | -4/+4 |
| | |||||
* | Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in | Walter Dörwald | 2009-04-25 | 1 | -1/+14 |
| | | | | | makeunicodedata.py and regenerated the Unicode database (This fixes u'\u1d79'.lower() == '\x00'). | ||||
* | #5810: Fixed Distutils test_build_scripts | Tarek Ziadé | 2009-04-25 | 1 | -1/+1 |
| | |||||
* | Issue #4951: Fixed failure in test_httpservers | Tarek Ziadé | 2009-04-25 | 1 | -2/+5 |
| | |||||
* | Issue #5837: Certain sequences of calls to set() and unset() for | Walter Dörwald | 2009-04-25 | 1 | -15/+17 |
| | | | | | | | | support.EnvironmentVarGuard objects restored the environment variables incorrectly on __exit__. Fix this by recording the initial value of each environment variable on the first access in set() or unset(). | ||||
* | Fix typo in complex parsing code; expand tests. | Mark Dickinson | 2009-04-25 | 1 | -3/+19 |
| | |||||
* | fix a segfault when setting __class__ in __del__ #5283 | Benjamin Peterson | 2009-04-25 | 1 | -0/+10 |
| | |||||
* | Issue 5041: ctypes unwilling to allow pickling wide character. | Thomas Heller | 2009-04-24 | 1 | -0/+5 |
| | |||||
* | Remove unnecessary double negative | Mark Dickinson | 2009-04-24 | 1 | -1/+1 |
| | |||||
* | Issue #5593: Use more robust test for double-rounding in test_fsum. | Mark Dickinson | 2009-04-24 | 1 | -8/+9 |
| | | | | | While we're at it, use new unittest.skipUnless decorator to implement skipping for that test. | ||||
* | Issue #5812: The two-argument form of the Fraction constructor | Mark Dickinson | 2009-04-24 | 2 | -13/+28 |
| | | | | now accepts arbitrary Rational instances. | ||||
* | Issue #5816: | Mark Dickinson | 2009-04-24 | 1 | -10/+66 |
| | | | | | | | | - simplify parsing and printing of complex numbers - make complex(repr(z)) round-tripping work for complex numbers involving nans, infs, or negative zeros - don't accept some of the stranger complex strings that were previously allowed---e.g., complex('1..1j') | ||||
* | Produce correct version string to access the .chm | Kurt B. Kaiser | 2009-04-23 | 4 | -10/+22 |
| | | | | docs on Windows. Patch 5783 gpolo. Will port. | ||||
* | Issue #5812: make Fraction('1e-6') valid. Backport of r71806. | Mark Dickinson | 2009-04-22 | 2 | -23/+34 |
| | |||||
* | Fixed issue 5782: formatting with commas didn't work if no specifier type ↵ | Eric Smith | 2009-04-22 | 1 | -0/+6 |
| | | | | code was given. | ||||
* | Issue 5354: Change API for import_fresh_module() to better support ↵ | Nick Coghlan | 2009-04-22 | 3 | -17/+51 |
| | | | | test_warnings use case (also fixes some bugs in the original implementation) | ||||
* | Backport of some of the work in r71665 to trunk. This reworks much of | Eric Smith | 2009-04-22 | 2 | -2/+56 |
| | | | | | | | | | | | | | | | | | | | | | int, long, and float __format__(), and it keeps their implementation in sync with py3k. Also added PyOS_double_to_string. This is the "fallback" version that's also available in trunk, and should be kept in sync with that code. I'll add an issue to document PyOS_double_to_string in the C API. There are many internal cleanups. Externally visible changes include: - Implement PEP 378, Format Specifier for Thousands Separator, for floats, ints, and longs. - Issue #5515: 'n' formatting for ints, longs, and floats handles leading zero formatting poorly. - Issue #5772: For float.__format__, don't add a trailing ".0" if we're using no type code and we have an exponent. | ||||
* | Issue #5170: Fixed regression caused when fixing #5768. | Vinay Sajip | 2009-04-22 | 1 | -1/+11 |
| | |||||
* | Restore skips of posix and pty tests on Windows by calling the | R. David Murray | 2009-04-21 | 2 | -3/+8 |
| | | | | | test_support.import_module on the appropriate modules before any other imports. | ||||
* | Fix for the Issue918368 - urllib doesn't correct server returned urls | Senthil Kumaran | 2009-04-21 | 2 | -0/+16 |
| | |||||
* | Nit: integer division should use //, not / | Mark Dickinson | 2009-04-20 | 1 | -1/+1 |
| | |||||
* | Issue #3166: Make long -> float (and int -> float) conversions | Mark Dickinson | 2009-04-20 | 2 | -0/+93 |
| | | | | | | correctly rounded, using round-half-to-even. This ensures that the value of float(n) doesn't depend on whether we're using 15-bit digits or 30-bit digits for Python longs. | ||||
* | making BuildWinInstTestCase silent in case bdist_wininst is not run under win32 | Tarek Ziadé | 2009-04-20 | 1 | -0/+1 |
| | |||||
* | #5795 sysconfig._config_vars was shadowed in tearDown | Tarek Ziadé | 2009-04-20 | 1 | -3/+4 |
| | |||||
* | Automatic conversion of floats to integers for struct.pack integer codes | Mark Dickinson | 2009-04-19 | 1 | -1/+1 |
| | | | | is deprecated. Use an explicit int() instead. | ||||
* | move test to a more appropiate one | Benjamin Peterson | 2009-04-18 | 1 | -25/+30 |
| | |||||
* | try to initalize all builtin types with PyType_Ready to avoid problems like ↵ | Benjamin Peterson | 2009-04-18 | 1 | -0/+12 |
| | | | | #5787 | ||||
* | fix a few nits in unittest.py #5771 | Benjamin Peterson | 2009-04-18 | 1 | -2/+2 |
| | |||||
* | Issue #1869: Fix a couple of minor round() issues. | Mark Dickinson | 2009-04-18 | 1 | -0/+3 |
| | |||||
* | DistutilsSetupError was not raised when one single warning occured | Tarek Ziadé | 2009-04-17 | 2 | -10/+9 |
| | |||||
* | Issue #5768: Change to Unicode output logic and test case for same. | Vinay Sajip | 2009-04-16 | 2 | -5/+6 |
| | |||||
* | call __float__ on str subclasses #5759 | Benjamin Peterson | 2009-04-15 | 1 | -0/+12 |
| | | | | tests by R. David Murray | ||||
* | pep8-fied | Tarek Ziadé | 2009-04-13 | 1 | -42/+23 |
| | |||||
* | improved test coverage for distutils.cmd | Tarek Ziadé | 2009-04-13 | 2 | -7/+47 |
| | |||||
* | deactivate test_search_cpp under win32 | Tarek Ziadé | 2009-04-13 | 1 | -0/+3 |
| | |||||
* | #5741 followup: should also allow %%(blah)s. | Georg Brandl | 2009-04-13 | 1 | -2/+2 |
| | |||||
* | Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries. | Tarek Ziadé | 2009-04-13 | 1 | -1/+31 |
| | |||||
* | Adjust test_asyncore to account for intentional asyncore behavior change | R. David Murray | 2009-04-13 | 1 | -4/+1 |
| | | | | introduced by r70934 that was causing a test failure when run under -O. | ||||
* | #5719: add short usage example to optparse docstring. | Georg Brandl | 2009-04-12 | 1 | -0/+13 |
| | |||||
* | remove useless import | Benjamin Peterson | 2009-04-12 | 1 | -1/+0 |
| | |||||
* | #5741: dont disallow double percent signs in SafeConfigParser.set() keys. | Georg Brandl | 2009-04-12 | 2 | -4/+8 |
| | |||||
* | removed string usage and added a test for _clean | Tarek Ziadé | 2009-04-12 | 2 | -4/+22 |
| | |||||
* | added a test for finalize_options | Tarek Ziadé | 2009-04-12 | 2 | -7/+21 |
| | |||||
* | added a simple test for search_cpp | Tarek Ziadé | 2009-04-12 | 2 | -5/+15 |
| | |||||
* | pep8-fied the module before adding tests | Tarek Ziadé | 2009-04-12 | 1 | -37/+25 |
| | |||||
* | removed the print statements and added a test | Tarek Ziadé | 2009-04-12 | 2 | -6/+52 |
| | |||||
* | Make test_asyncore tests match code changes introduced by the | R. David Murray | 2009-04-11 | 1 | -37/+20 |
| | | | | | fix to Issue1161031, refactoring the test to simplify it in the process. | ||||
* | testing a full check case | Tarek Ziadé | 2009-04-11 | 2 | -1/+8 |
| | |||||
* | #5732: added the check command into Distutils | Tarek Ziadé | 2009-04-11 | 3 | -1/+236 |
| | |||||
* | Issue 5354: Provide a standardised testing mechanism for doing fresh imports ↵ | Nick Coghlan | 2009-04-11 | 3 | -35/+76 |
| | | | | of modules, including the ability to block extension modules in order to test the pure Python fallbacks |