Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
85f1970 Finish fix for issue2573, previous patch was incomplete. 02 May 2008, 19:58:56 UTC
580c7fe Fix for issue #2573: Can't change the framework name on OS X builds This introduces a new configure option: --with-framework-name=NAME (defaulting to 'Python'). This allows you to install several copies of the Python framework with different names (such as a normal build and a debug build). 02 May 2008, 19:45:11 UTC
ee340e5 Fixed some test structures. Thanks Mark Dickinson. 02 May 2008, 17:39:00 UTC
7c5c8e6 #2581: Vista UAC/elevation support for bdist_wininst 02 May 2008, 12:48:15 UTC
f8cc640 This should fix issue2632. A long description of the two competing problems is in the bug report (one old, one recently introduced trying to fix the old one). In short: buffer data during socket._fileobject.read() and readlines() within a cStringIO object instead of a [] of str()s returned from the recv() call. This prevents excessive memory use due to the size parameter being passed to recv() being grossly larger than the actual size of the data returned *and* prevents excessive cpu usage due to looping in python calling recv() with a very tiny size value if min() is used as the previous memory-use bug "fix" did. It also documents what the socket._fileobject._rbufsize member is actually used for. This is a candidate for back porting to 2.5. 02 May 2008, 07:26:52 UTC
b457dda Fix a backwards-compatibility mistake where a new optional argument for warnings.showwarning() was being used. This broke pre-existing replacements for the function since they didn't support the extra argument. Closes issue 2705. 02 May 2008, 02:25:09 UTC
0c65fe6 Fix synopsis. 01 May 2008, 18:24:32 UTC
80ef62e Fix typo in whatsnew 30 April 2008, 22:03:36 UTC
95287fa Remove some from __future__ import with_statements 30 April 2008, 21:25:55 UTC
655fc70 #1748: use functools.wraps instead of rolling own metadata update. 30 April 2008, 21:08:42 UTC
d8f2d0b make test_support's captured_output a bit more robust when exceptions happen 30 April 2008, 21:03:58 UTC
63b0a2e #2727: clarify tp_iternext docs. 30 April 2008, 20:02:37 UTC
28e0873 #2719: backport next() from 3k. 30 April 2008, 19:47:09 UTC
46d6b68 Typo fix 30 April 2008, 16:19:55 UTC
31f6315 Update command line usage documentation to reflect 2.6 changes (also includes some minor cleanups). Addresses TODO list issue 2258 30 April 2008, 14:23:36 UTC
0a95063 Issue 2526, float.__format__ 'n' specifier does not support thousands grouping. Implemented grouping, with tests. Cleaned up PyOS_ascii_formatd by breaking reformatting into smaller functions. 30 April 2008, 01:09:30 UTC
48f6276 Add Rodrigo and Heiko. 29 April 2008, 06:10:53 UTC
805cdd8 Strip down SSL docs; I'm not managing to get test programs working, so I'll just give a minimal description 29 April 2008, 02:03:54 UTC
87da127 test_sundry performs minimal tests (a simple import...) on modules that are not tested otherwise. Some of them now have tests and can be removed. Only 70 to go... 28 April 2008, 21:07:06 UTC
e855991 Fix markup. 28 April 2008, 05:16:30 UTC
8dc4303 Rename the test_traceback_print() function to traceback_print() to prevent test_capi from automatically calling the function. 28 April 2008, 04:50:06 UTC
b8bdbc0 Get rid of _test(), _main(), _debug() and _check(). Tests are no longer needed (better set available in Lib/test/test_robotparser.py). Clean up a few PEP 8 nits (compound statements on a single line, whitespace around operators). 28 April 2008, 03:27:53 UTC
dfd9827 Wrap some long lines. 28 April 2008, 03:25:37 UTC
141534e Fix a bug introduced by the warnings rewrite where tracebacks were being improperly indented. Closes issue #2699. 28 April 2008, 03:23:50 UTC
f30f6e8 Correct documentation to match implementation: "Class" instead of "class_descriptor", "Function" instead of "function_descriptor". Note default path value for readmodule*. Wrap some long paragraphs. Don't mention 'inpackage' which isn't part of the public API. 28 April 2008, 02:59:45 UTC
fe1372c Minor cleanups: * Avoid creating unused local variables where we can. Where we can't prefix the unused variables with '_'. * Avoid shadowing builtins where it won't change the external interface of a function. * Use None as default path arg to readmodule and readmodule_ex. 28 April 2008, 02:57:23 UTC
7980992 Wrap some long paragraphs and include the default values for optional function parameters. 27 April 2008, 22:52:02 UTC
ea59a84 A few small changes: * The only exception we should catch when trying to import cStringIO is an ImportError. * Delete the function signatures embedded in the mk*temp docstrings. * The tempdir global variable was initialized twice. 27 April 2008, 22:49:56 UTC
8310190 Autocompletion of filenames now support alternate separators, e.g. the '/' char on Windows. Patch 2061 Tal Einat. 27 April 2008, 21:52:19 UTC
9c5c0af Improved AutoCompleteWindow logic. Patch 2062 Tal Einat. 27 April 2008, 21:38:05 UTC
93cdae5 Home / Control-A toggles between left margin and end of leading white space. Patch 1196903 Jeff Shute. M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/NEWS.txt 27 April 2008, 21:07:41 UTC
ef1e58b minor wording changes, rewrap a few lines 27 April 2008, 20:53:57 UTC
4f1f36b Add OpenSearch and a Python logo to the HTML output. 27 April 2008, 20:03:05 UTC
f19a7b9 A little reformating of Py3k warnings 27 April 2008, 18:40:21 UTC
fe4948b #2700 Document PyNumber_ToBase 27 April 2008, 18:14:39 UTC
7a69b4b Use correct XHTML tags. 27 April 2008, 17:38:55 UTC
f8770fb #2677: add note that not all functions may accept keyword args. 27 April 2008, 09:39:59 UTC
9f4f481 Use PyErr_WarnPy3k throughout 27 April 2008, 03:01:45 UTC
a692c4d Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k warnings to the use of this function soon. 27 April 2008, 02:28:02 UTC
ba08f07 Fixed URL of PEP 205 in weakref's module docstring. 27 April 2008, 00:52:24 UTC
a6b79f3 Add missing return type to dealloc. 26 April 2008, 18:32:17 UTC
78b3ee8 #2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky. 26 April 2008, 18:31:07 UTC
a3bb57c #2668: nit in apply() docs. 26 April 2008, 18:25:43 UTC
14204ad Allow test_import to work when it is invoked directly 25 April 2008, 21:43:56 UTC
fe536f5 Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill. 25 April 2008, 16:59:09 UTC
6513466 Issue #1496032. Add -mieee to BASECFLAGS on alpha, when gcc is the compiler. This should(?) help to fix failures in test_math and test_cmath on Linux/alpha. Also add configure message reporting the result of uname -m, as a debugging aid. 25 April 2008, 16:11:04 UTC
6ad5fbb Add from_buffer and from_buffer_copy class methods to ctypes types. 25 April 2008, 15:44:16 UTC
5364e2e A new crasher. 25 April 2008, 09:35:18 UTC
2b0bea5 Fix typo (now -> no) 25 April 2008, 03:40:17 UTC
c7b0592 reformat some documentation of classes so methods and attributes are under the class directive 25 April 2008, 01:29:10 UTC
1c596d5 Use absolute import for test package 24 April 2008, 20:41:50 UTC
7477205 Add a few tests for pydoc. This is a modified version of a patch proposed by Humberto Diogenes in the discussion of issue1883. I will merge manually this change into the py3k branch: the tests must be adapted. 24 April 2008, 20:22:26 UTC
48ebc26 Disable gc when running test_trace, or we may record the __del__ of collected objects. See http://mail.python.org/pipermail/python-checkins/2008-April/068633.html the extra events perfectly match several calls to socket._fileobject.__del__() 24 April 2008, 20:10:26 UTC
bf027c4 Remove cyclic reference in CFuncPtr instances; see issue #2682. Backport candidate for the release25-maint branch. 24 April 2008, 18:14:19 UTC
5216721 Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0). This happened only when 8 is the first digit. Credits go to Lukas Meuser. 24 April 2008, 18:07:05 UTC
11034c6 Add Jesus Cea. 24 April 2008, 13:18:03 UTC
83c9201 Fix typo. 24 April 2008, 13:17:24 UTC
19dfa3e Remove Py_Refcnt, Py_Type, Py_Size, as they were added only for backwards compatibility, yet 2.5 did not have them at all. 24 April 2008, 13:16:36 UTC
5169891 Add Guilherme Polo. 24 April 2008, 09:50:50 UTC
c859094 #2673 Fix example typo in optparse docs 23 April 2008, 20:38:06 UTC
6c6f4f7 syntax fixup 23 April 2008, 01:06:42 UTC
6d9aafa Factor in documentation changes from issue 1753732. 22 April 2008, 22:45:09 UTC
9686585 Issue #2670: urllib2.build_opener() failed when two handlers derive the same default base class. Will backport. 22 April 2008, 21:14:41 UTC
d59fefb update the getpass entry 22 April 2008, 08:11:33 UTC
19b4411 Major improvements: * Default to using /dev/tty for the password prompt and input before falling back to sys.stdin and sys.stderr. * Use sys.stderr instead of sys.stdout. * print the 'password may be echoed' warning to stream used to display the prompt rather than always sys.stderr. * warn() with GetPassWarning when input may be echoed. 22 April 2008, 08:08:41 UTC
8e0319d Add Thomas Lee 22 April 2008, 05:07:47 UTC
3c399d1 Various io doc updates 22 April 2008, 02:16:03 UTC
7a3d864 Make configure test for tanh(-0.) == -0. committed in r62447 actually work. (The test wasn't properly linked with libm. Sigh.) 22 April 2008, 00:54:27 UTC
60ffcbe Fix Sphinx warnings 21 April 2008, 22:57:00 UTC
dd8d824 Issue 2665: On Windows, sys.stderr does not contain a valid file when running without a console. It seems to work, but will fail at the first flush. This causes IDLE to crash when too many warnings are printed. Will backport. 21 April 2008, 22:35:30 UTC
265d738 test_math and test_cmath are failing on the FreeBSD 6.2 trunk buildbot, apparently because tanh(-0.) loses the sign of zero on that platform. If true, this is a bug in FreeBSD. Added a configure test to verify this. I still need to figure out how best to deal with this failure. 21 April 2008, 22:32:24 UTC
41e3018 If sys.stdin is not a tty, fall back to default_getpass after printing a warning instead of failing with a termios.error. 21 April 2008, 21:31:08 UTC
aa3cadb Windows x64 also falls under VER_PLATFORM_WIN32_NT. 21 April 2008, 20:15:39 UTC
fa1814e explicitly flush after the ... since there wasn't a newline 21 April 2008, 17:46:40 UTC
67ea002 capitalization 21 April 2008, 14:43:33 UTC
09f57b7 corrections ("reStructuredText" is one word) 21 April 2008, 14:40:22 UTC
b9dd8db Fix typo. 21 April 2008, 13:46:55 UTC
ad9f629 Moved Mark SummerField's io doc changes back to the trunk. (He will edit here in the future.) 21 April 2008, 11:57:40 UTC
57ce054 Add various items 21 April 2008, 02:14:24 UTC
89830c3 Wording changes 21 April 2008, 02:08:13 UTC
64c6a0e Markup fix 21 April 2008, 02:08:00 UTC
0da94c8 Silence 'r may be used uninitialized' compiler warning. 21 April 2008, 01:55:50 UTC
a5489d4 Comment typo 21 April 2008, 01:45:57 UTC
92483cd math.atan2 is misbehaving on Windows; this patch should fix the problem in the same way that the cmath.phase problems were fixed. 20 April 2008, 21:39:04 UTC
eac43af Correct an apparent refleak in test_pkgutil: zipimport._zip_directory_cache contains info for all processed zip files, even when they are no longer used. 20 April 2008, 21:02:21 UTC
d6d5148 Add test for tanh(-0.) == -0. on IEEE 754 systems 20 April 2008, 20:38:48 UTC
c632301 Even more fixes for alpha Tru64, this time for the phase and polar methods. 20 April 2008, 18:30:05 UTC
2cede39 Move description of math module changes; various edits to description of cmath changes 20 April 2008, 16:54:02 UTC
98c317a Issue 2662: Initialize special value tables dynamically (i.e. when cmath module is loaded) instead of statically. This fixes compile-time problems on platforms where HUGE_VAL is an extern variable rather than a constant. Thanks Hirokazu Yamamoto for the patch. 20 April 2008, 16:13:17 UTC
cec3f13 Yet more explicit special case handling to make math.pow behave on alpha Tru64. All IEEE 754 special values are now handled directly; only the finite**finite case is handled by libm. 20 April 2008, 04:13:13 UTC
b2f7090 FreeBSD doesn't follow C99 for modf(inf); so add explicit special-value handling to math.modf code. 20 April 2008, 01:39:24 UTC
9f99d70 Report additional diagnostic information in test_math, to help track down debian-alpha buildbot failure. 20 April 2008, 01:22:30 UTC
47a84aa Move asinh documentation to the proper place. Remove meaningless 'in radians' from inverse hyperbolic functions. 19 April 2008, 21:49:22 UTC
48f7a4a Correct documentation for math.pow; 0**nan is nan, not 0. (But nan**0 and 1**nan are 1.) Also fix minor typo: 'quite NaN' -> 'quiet NaN' 19 April 2008, 21:35:35 UTC
1df986b Update template for newest Sphinx. 19 April 2008, 21:28:38 UTC
53bd2e1 Document updates to math and cmath modules. 19 April 2008, 20:31:16 UTC
a7d0903 Complete documentation for errors argument of io's open and TextIOWrapper 19 April 2008, 19:47:34 UTC
a1293eb Additional special-case handling for math.pow. Windows/VS2008 doesn't like (-1)**(+-inf). 19 April 2008, 19:41:52 UTC
53be57e Copy io documentation back from py3k branch so changes can be merged into it. 19 April 2008, 19:34:05 UTC
e941d97 Additional tests for math.pow, and extra special-case handling code in math.pow, in the hope of making all tests pass on the alpha Tru64 buildbot. 19 April 2008, 18:51:48 UTC
back to top