summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-221-0/+9
| | | | | | | | | | | | | | | | | | | | | 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 #3166: Make long -> float (and int -> float) conversionsMark Dickinson2009-04-201-0/+3
| | | | | | 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.
* adding a NEWS note for #5795 (previously checked via the buildbot)Tarek Ziadé2009-04-201-0/+2
|
* try to initalize all builtin types with PyType_Ready to avoid problems like ↵Benjamin Peterson2009-04-181-0/+3
| | | | #5787
* Issue #1869: Fix a couple of minor round() issues.Mark Dickinson2009-04-181-0/+3
|
* Issue #5768: Change to Unicode output logic and test case for same.Vinay Sajip2009-04-161-6/+8
|
* call __float__ on str subclasses #5759Benjamin Peterson2009-04-151-0/+2
| | | | tests by R. David Murray
* Add missing NEWS item for issue1161031 fix.R. David Murray2009-04-131-0/+6
|
* Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries.Tarek Ziadé2009-04-131-0/+2
|
* #5741: dont disallow double percent signs in SafeConfigParser.set() keys.Georg Brandl2009-04-121-0/+3
|
* #5704: let python -3 imply -t as well.Georg Brandl2009-04-121-0/+2
|
* #5732: added the check command into DistutilsTarek Ziadé2009-04-111-0/+2
|
* Issue #2170: refactored xml.dom.minidom.normalize, increasing bothR. David Murray2009-04-091-0/+3
| | | | its clarity and its speed.
* Fixed #5731: Distutils bdist_wininst no longer worked on non-Windows platformsTarek Ziadé2009-04-091-0/+3
|
* Typo fixesAndrew M. Kuchling2009-04-091-1/+1
|
* see if this helps the doc buildsBenjamin Peterson2009-04-061-0/+1
|
* - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths areGregory P. Smith2009-04-061-0/+3
| | | | now collapsed within the url properly before looking in cgi_directories.
* news entry for r71299.Gregory P. Smith2009-04-051-0/+3
|
* Fixed #5095: msi missing from Distutils bdist formatsTarek Ziadé2009-04-051-0/+3
|
* Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases ↵Tarek Ziadé2009-04-051-0/+3
| | | | (detailed in the test
* Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'Matthias Klose2009-04-051-1/+2
| | | | to avoid compiler warnings.
* - Issue #2703: SimpleXMLRPCDispatcher.__init__: Provide default values forMatthias Klose2009-04-051-0/+3
| | | | new arguments introduced in 2.5.
* Normalize issue referencing style.Georg Brandl2009-04-051-13/+13
|
* Adding assertIs and assertIsNot methods to unittest.TestCaseMichael Foord2009-04-051-0/+2
| | | | Issue #2578
* Fixed 5694: removed spurious test output in DistutilsTarek Ziadé2009-04-051-0/+2
|
* #5471: fix expanduser() for $HOME set to "/".Georg Brandl2009-04-051-0/+2
|
* Add NEWS entry for r71237.Georg Brandl2009-04-051-0/+2
|
* - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.Matthias Klose2009-04-051-0/+2
| | | | (avoiding brown paper typo this time)
* #1726172: dont raise an unexpected IndexError if a voidresp() call has an ↵Georg Brandl2009-04-051-0/+2
| | | | empty response.
* revert r71159 since it broke the buildBenjamin Peterson2009-04-041-2/+0
|
* - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.Matthias Klose2009-04-041-0/+2
|
* - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access withMatthias Klose2009-04-041-0/+3
| | | | short file names.
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-0/+2
|
* PyErr_NormalizeException may not set an error, so convert the PyErr_SetObjectGeorg Brandl2009-04-021-0/+3
| | | | call on hitting the recursion limit into just assigning it to the arguments provided.
* Add missing iteritems() call to the for loop in mailbox.MH.get_message().R. David Murray2009-04-021-0/+3
| | | | Fixes issue2625.
* Add custom initializer argument to multiprocess.Manager*, courtesy of lekmaJesse Noller2009-04-021-0/+3
|
* Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCESJesse Noller2009-04-021-0/+4
|
* Better exception messages for unittest assert methods.Michael Foord2009-04-021-0/+8
| | | | | | | | | | | | - unittest.assertNotEqual() now uses the inequality operator (!=) instead of the equality operator. - Default assertTrue and assertFalse messages are now useful. - TestCase has a longMessage attribute. This defaults to False, but if set to True useful error messages are shown in addition to explicit messages passed to assert methods. Issue #5663
* PyImport_AppendInittab() took a char * as a first argument even though thatBrett Cannon2009-04-021-0/+3
| | | | | | | string was stored beyond the life of the call. Changed the signature to be const char * to help make this point. Closes issue #1419652.
* Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to ↵Jesse Noller2009-04-021-0/+2
| | | | Martin Loewis
* Add my initials to Misc/developers.txt. Names are now sorted by number ofBrett Cannon2009-04-011-4/+5
| | | | characters in the person's name.
* In Pdb, stop assigning values to __builtin__._ which interferes with the one ↵Georg Brandl2009-04-011-0/+3
| | | | commonly installed by gettext.
* Add NEWS item.Georg Brandl2009-04-011-0/+2
|
* test_warnings ironically had a single test that was not protecting the warningsBrett Cannon2009-04-011-0/+2
| | | | filter and was resetting it.
* test_logging was blindly clearing the warnings filter. This causedBrett Cannon2009-04-011-0/+2
| | | | | PendingDeprecationWarnings to be spewed all over by unittest.failIf*(). Fix moves over to using warnings.catch_warning to protect the warnings filter.
* Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.Raymond Hettinger2009-04-011-0/+2
|
* Adding Wing project fileMichael Foord2009-04-012-0/+14
|
* _warnings was importing itself to get an attribute. That's bad if warnings getsBrett Cannon2009-04-011-0/+2
| | | | | | called in a thread that was spawned by an import itself. Last part to close #1665206.
* Paul Kippes was given commit privileges to work on 3to2.Brett Cannon2009-04-011-0/+2
|
* Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2.Brett Cannon2009-04-011-0/+2
|