https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
6cc7940 Bump to 2.6a3 08 May 2008, 13:16:19 UTC
c27b8b8 Fix for issue 1770190: platform.mac_ver() now returns the right version on OSX 10.4.10 08 May 2008, 10:34:39 UTC
5a9fed7 Fix-up the enumerate type example and move it to the end. 08 May 2008, 07:23:30 UTC
cf98f03 The __all__ variable forgot to expose the gcd() function. 08 May 2008, 04:36:12 UTC
c5a1cc5 Frozensets do not benefit from autoconversion. 08 May 2008, 04:35:20 UTC
2e6407d Practice EAFP, and revert 62787 07 May 2008, 23:11:54 UTC
33e4a98 Replace more float hacks with correct math functions 07 May 2008, 22:54:17 UTC
342c095 update .bzrignore 07 May 2008, 02:23:43 UTC
5be0176 Re-added getbuildinfo.c solution item 06 May 2008, 23:59:53 UTC
34f18fd Create a TextMate directory in Misc to house a Python-Dev bundle. 06 May 2008, 23:44:04 UTC
c2ca6db Disabled some unit tests for the upcoming release. See #2777 06 May 2008, 23:42:58 UTC
f843682 Add an entry about audiodev being slated for removal in 3.0. 06 May 2008, 23:41:32 UTC
e5d2cba Deprecate the audiodev module for 3.0. 06 May 2008, 23:23:34 UTC
7961823 When testing a module's __all__, we really don't care if it is deprecated. 06 May 2008, 23:22:02 UTC
af748c3 Implemented PEP 370 06 May 2008, 22:41:46 UTC
323c40d Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning 06 May 2008, 22:31:52 UTC
d295032 Fix logic error in Python/_warnings.c and add a test to verify 06 May 2008, 22:18:11 UTC
c730d5f > != (!<). 06 May 2008, 17:20:54 UTC
5820022 #2773: fix description of 'g' and 'G' formatting spec. 06 May 2008, 17:11:42 UTC
c8a0d2f Intern static string Use float constructors instead of magic code for float constants 06 May 2008, 16:18:41 UTC
8e49973 fix issue2707 - os.walk docstring example correctness typo. 06 May 2008, 07:05:18 UTC
e3dcb01 Fix a bug in the handling of the stacklevel argument in warnings.warn() where the stack was being unwound by two levels instead of one each time. 06 May 2008, 04:37:31 UTC
0b7f778 PEP 8 nits in json package 06 May 2008, 02:51:10 UTC
24237ea Fix a bug introduced in r62627. see issue2760 and issue2632. An assertion in readline() would fail as data was already in the internal buffer even though the socket was in unbuffered read mode. That case is now handled. More importantly, read() has been fixed to not over-recv() and leave newly recv()d data in the _fileobject buffer. The max() vs min() issue in read() is now gone. Neither was correct. On bounded reads, always ask recv() for the exact amount of data we still need. Candidate for backporting to release25-maint along with r62627. 05 May 2008, 21:53:45 UTC
98fd036 #2752: fix second example too. 05 May 2008, 21:06:48 UTC
cb63565 #2769: markup glitch. 05 May 2008, 20:59:05 UTC
3961f18 Fix JSON module docs. 05 May 2008, 20:53:39 UTC
4b964f9 Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob Ippolito. Closes issue #2750. 05 May 2008, 20:21:38 UTC
5f2e0e5 Revert bogus checkin in r62724 to that file. 05 May 2008, 17:54:01 UTC
c3ad68c Fix Unicode filename test. 05 May 2008, 17:47:06 UTC
471617d Issue #1734346: Support Unicode file names for zipfiles. 05 May 2008, 17:16:58 UTC
9c19bc6 Remove the use of 'inspect' from 'warnings' for detected deprecated use of the showwarning API. Turns out 'inspect' uses 'operator' which is an extension module. That's a problem when it has not been built yet by setup.py. 05 May 2008, 16:57:38 UTC
8a232cc Add a DeprecationWarning for when warnings.showwarning() is set to a function that lacks support for the new 'line' argument. 05 May 2008, 05:32:07 UTC
9ae080e Remove method signatures from the docstrings of io.py 04 May 2008, 22:39:33 UTC
8d66dcd #2695: Do case-insensitive check for algorithms. 04 May 2008, 21:40:44 UTC
83ea2a9 Fix typo in bugs.rst 04 May 2008, 19:10:02 UTC
bc04346 #2757: Remove spare newline. 04 May 2008, 15:45:05 UTC
e11c9b3 Implemented feature request 2157: Converter names are cut off at '(' characters. This avoids the common case of something like 'NUMBER(10)' not being parsed as 'NUMBER', like expected. Also corrected the docs about converter names being case-sensitive. They aren't any longer. 04 May 2008, 13:42:44 UTC
5a366c3 Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. The sqlite3.Row type is now correctly hashable. 04 May 2008, 13:15:12 UTC
ffa3357 SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONG #ifdefing was useless. 04 May 2008, 12:59:57 UTC
7e3ab45 Added note that Python requires at least Win2k SP4 04 May 2008, 11:50:53 UTC
08c7218 #2752: wrong meaning of '' for socket host. 04 May 2008, 09:15:04 UTC
8334330 Fix typo in whatsnew 04 May 2008, 03:05:49 UTC
71f3b85 Make sure that Context traps and flags dictionaries have values 0 and 1 (as documented) rather than True and False. 04 May 2008, 02:25:46 UTC
8aca9d0 Some very minor changes to decimal.py in Python 2.6, aimed at reducing the size of the diff between the 2.x decimal.py and 3.x decimal.py and thereby making future merges easier: - replace one instnace of an old-style raise statement - define __div__ in terms of __truediv__ instead of the other way around - make wording match on an exception message 04 May 2008, 02:05:06 UTC
979395b Moved testing of builtin types out of test_builtin and into type specific modules 03 May 2008, 21:35:18 UTC
761b9c6 Insert correct OpenSearch base URL. 03 May 2008, 20:16:47 UTC
1840c1a Backport Raymond's changes in r60508 to Python 2.6. 'Context flags get set, not incremented' 03 May 2008, 18:23:14 UTC
2b30ea0 The compiling struct is now passed around to all AST helpers (see issue 2720) 03 May 2008, 15:56:42 UTC
7684f85 In test_io, StatefulIncrementalDecoderTest was not part of the test suite. And of course, the test failed: a bytearray was used without reason in io.TextIOWrapper.tell(). The difference is that iterating over bytes (i.e. str in python2.6) returns 1-char bytes, whereas bytearrays yield integers. This code should still work with python3.0 03 May 2008, 12:21:13 UTC
64a4bbe Fix the C implementation of 'warnings' to infer the filename of the module that raised an exception properly when __file__ is not set, __name__ == '__main__', and sys.argv[0] is a false value. Closes issue2743. 03 May 2008, 03:19:39 UTC
ab9cc1b Fix some indentation errors. 03 May 2008, 01:02:41 UTC
56fcb0b capitalization nit for reStructuredText 02 May 2008, 22:12:58 UTC
26f545c Fix for issue #2520 (cannot import macerrors) 02 May 2008, 21:54:56 UTC
f2ef92c Fix for #1905: PythonLauncher not working correctly on OSX 10.5/Leopard This fixes both Python Launchar and the terminalcommand module. 02 May 2008, 21:42:35 UTC
6780a9d Merged revisions 62263-62646 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r62470 | david.wolever | 2008-04-24 02:11:07 +0200 (Do, 24 Apr 2008) | 3 lines Fixed up and applied the patch for #2431 -- speeding up 2to3 with a lookup table. ........ r62646 | martin.v.loewis | 2008-05-02 23:29:27 +0200 (Fr, 02 Mai 2008) | 2 lines Fix whitespace. ........ 02 May 2008, 21:30:20 UTC
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
back to top