summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reformat, since I've been busy here anyway.Jeroen Ruigrok van der Werven2009-04-251-34/+37
|
* Issue #4129: Documentation notes for int -> Py_ssize_t changes.Jeroen Ruigrok van der Werven2009-04-251-0/+8
|
* Issue #4129: More documentation pointers about int -> Py_ssize_t.Jeroen Ruigrok van der Werven2009-04-251-1/+9
| | | | | | Also fix up the documentation for PyObject_GC_Resize(). It seems that since it first got documented, the documentation was actually for _PyObject_GC_Resize().
* Reformat prior to editing.Jeroen Ruigrok van der Werven2009-04-251-35/+39
|
* Since I edited this file, reformat for future edits.Jeroen Ruigrok van der Werven2009-04-251-68/+72
|
* Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.Jeroen Ruigrok van der Werven2009-04-251-3/+3
|
* Reformat prior to editing.Jeroen Ruigrok van der Werven2009-04-251-41/+47
|
* Issue #4129: Document more int -> Py_ssize_t changes.Jeroen Ruigrok van der Werven2009-04-251-0/+11
|
* Reformat prior to editing.Jeroen Ruigrok van der Werven2009-04-251-17/+18
|
* Issue #4129: Belatedly document which C API functions had their argument(s) orJeroen Ruigrok van der Werven2009-04-2513-5/+171
| | | | | return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this might cause problems on 64-bit platforms.
* Issue #5078: Avoid redundant call to FormatError()Thomas Heller2009-04-251-146/+142
|
* #5841: add deprecation py3k warning and notice in the docs for commands module.Georg Brandl2009-04-252-4/+10
|
* #5821: add some capabilities of TarFile's file-like object.Georg Brandl2009-04-251-2/+3
|
* #5834: use "failure" instead of "error" because the two have different ↵Georg Brandl2009-04-251-1/+1
| | | | meanings in unittest context.
* #3320: fix spelling.Georg Brandl2009-04-251-1/+1
|
* Reformat paragraph.Jeroen Ruigrok van der Werven2009-04-251-10/+10
|
* The type for ppos has been Py_ssize_t since 2.5, reflect this in theJeroen Ruigrok van der Werven2009-04-251-1/+1
| | | | documentation.
* Reformat prior to editing.Jeroen Ruigrok van der Werven2009-04-251-50/+55
|
* Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic inWalter Dörwald2009-04-254-25/+41
| | | | | makeunicodedata.py and regenerated the Unicode database (This fixes u'\u1d79'.lower() == '\x00').
* Reformat file prior to editing.Jeroen Ruigrok van der Werven2009-04-251-239/+252
|
* Rewrite a sentence to be more in line with the rest of the documentation withJeroen Ruigrok van der Werven2009-04-251-7/+7
| | | | regard to person and audience.
* #5810: Fixed Distutils test_build_scriptsTarek Ziadé2009-04-252-1/+4
|
* Issue #4239: adjust email examples not to use connect() and terminate withJeroen Ruigrok van der Werven2009-04-254-7/+4
| | | | quit() and not close().
* Issue #4951: Fixed failure in test_httpserversTarek Ziadé2009-04-252-2/+7
|
* Issue #5837: Certain sequences of calls to set() and unset() forWalter Dörwald2009-04-252-15/+21
| | | | | | | | 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().
* First attempt to document PyObject_HEAD_INIT and PyVarObject_HEAD_INIT.Jeroen Ruigrok van der Werven2009-04-251-1/+18
|
* Reformat prior to expanding.Jeroen Ruigrok van der Werven2009-04-251-57/+63
|
* Fix typo in complex parsing code; expand tests.Mark Dickinson2009-04-252-4/+20
|
* fix a segfault when setting __class__ in __del__ #5283Benjamin Peterson2009-04-253-0/+18
|
* Issue #3102: All global symbols that the _ctypes extension defines areThomas Heller2009-04-248-525/+529
| | | | now prefixed with 'Py' or '_ctypes'.
* Issue 5041: ctypes unwilling to allow pickling wide character.Thomas Heller2009-04-243-1/+8
|
* Issue #5161: wrong paths for ctypes cleanup when Python is built in aThomas Heller2009-04-241-2/+2
| | | | directory other than the source directory.
* Remove unnecessary double negativeMark Dickinson2009-04-241-1/+1
|
* Issue #5593: Use more robust test for double-rounding in test_fsum.Mark Dickinson2009-04-241-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 constructorMark Dickinson2009-04-243-13/+32
| | | | now accepts arbitrary Rational instances.
* Fix missing 'return NULL'Mark Dickinson2009-04-241-1/+1
|
* Issue #5816:Mark Dickinson2009-04-244-176/+230
| | | | | | | | - 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')
* Add link to PEP 236.Georg Brandl2009-04-231-0/+5
|
* #5813: add a reference to the "future statements" section.Georg Brandl2009-04-231-0/+4
|
* Fix rewrapping accident.Georg Brandl2009-04-231-3/+3
|
* #5820: fix bug in usage of getreader().Georg Brandl2009-04-231-1/+1
|
* Produce correct version string to access the .chmKurt B. Kaiser2009-04-234-10/+22
| | | | docs on Windows. Patch 5783 gpolo. Will port.
* Issue #5812: make Fraction('1e-6') valid. Backport of r71806.Mark Dickinson2009-04-224-32/+46
|
* Fixed issue 5782: formatting with commas didn't work if no specifier type ↵Eric Smith2009-04-222-0/+7
| | | | code was given.
* Issue 5354: Change API for import_fresh_module() to better support ↵Nick Coghlan2009-04-225-21/+85
| | | | 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 ofEric Smith2009-04-229-508/+906
| | | | | | | | | | | | | | | | | | | | | 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 Sajip2009-04-221-1/+11
|
* Documentation for issue 5237, auto-numbered format fields. Contributed by ↵Eric Smith2009-04-222-9/+16
| | | | Terry J. Reedy.
* #5751: fix escaping of \\n.Georg Brandl2009-04-211-1/+1
|
* #5757: fix copy-paste error in notify().Georg Brandl2009-04-211-5/+5
|