https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4ac0fc8 This commit was manufactured by cvs2svn to create tag 'r235c1'. 26 January 2005, 04:55:57 UTC
cdcfd6f added 2.3.5 26 January 2005, 04:55:57 UTC
4b0ae3a Recompiled after source changes. 25 January 2005, 22:09:01 UTC
3b9f0a3 Installer changes for 2.3.5c1. 25 January 2005, 22:07:51 UTC
6ef7f2c Build number for 2.3.5c1 is 61. 25 January 2005, 22:05:22 UTC
f725bdb Running a bdist_wininst installer, built with Python 2.3, installing for Python 2.4 caused a segfault when post_install_script was used. The reason was that the file handle passed to PyRun_SimpleFile() was created with MSVCRT.DLL, but Python 2.4 uses MSVCR71.DLL. So, I replaced PyRun_SimpleFile() with PyRun_SimpleString(). The segfault is gone, but the output of the postinstall script doesn't show up, because still freopen() from MSVCRT is used. (I would be very gratefull if someone proofreads the patch, at least). 25 January 2005, 20:46:48 UTC
cf5d664 Set PYTHONHOME before loading Python, so that sys.path will be set correctly. 25 January 2005, 19:47:48 UTC
e762a64 set the release date 25 January 2005, 15:16:49 UTC
724ef20 1.0.5, to match the python patchlevel 25 January 2005, 13:08:15 UTC
c859084 copy.py fixed to first lookup __copy__ from the instance being copied, rather than only looking at the type - this was broken in 2.3. 25 January 2005, 12:52:18 UTC
dd6ab86 pre-release bits 25 January 2005, 12:51:43 UTC
a0c5d38 happy new year! 25 January 2005, 12:39:22 UTC
bac3d91 bump version number to prepare for a release 25 January 2005, 07:53:30 UTC
03bdf17 Flush std{in,out,err} before closing it. Fixes #1074011. 23 January 2005, 09:50:32 UTC
87b99c7 At least one bug has been fixed in distutils, so increment the last part of the version number. For the distutils version numbering scheme, see http://mail.python.org/pipermail/distutils-sig/2005-January/004368.html 20 January 2005, 19:28:44 UTC
5fc22ec distutils/command/install.py change. 20 January 2005, 19:22:12 UTC
633d024 Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options. Backport from trunk. 20 January 2005, 19:16:27 UTC
29e932b fix typeset of vertical bar for PDF format (closes SF bug #1008998) 19 January 2005, 07:22:13 UTC
37e132b On OpenBSD, terminating IDLE with ctrl-c from the command line caused a stuck subprocess MainThread because only the SocketThread was exiting. M NEWS.txt M run.py 19 January 2005, 06:23:51 UTC
87d3ad6 documentation for the zipimport module using contributed patch (closes SF bug #853800; markup adjusted) 19 January 2005, 06:03:29 UTC
5e215b9 Backport configDialog.py rev 1.60: Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set" button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. M NEWS.txt M configDialog.py 19 January 2005, 05:53:32 UTC
f64f450 This commit was manufactured by cvs2svn to create branch 'release23-maint'. 19 January 2005, 05:42:50 UTC
a2a0bfe Description of args to IMAP4.store() in imaplib (closes SF patch #1084092; modified per comments in SF) 19 January 2005, 04:49:26 UTC
d04acc8 Backport EditorWindow rev 1.60 configHelpSourceEdit rev 1.7 15Jul04 checking sys.platform for substring 'win' was breaking IDLE docs on Mac (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580. M EditorWindow.py M NEWS.txt M configHelpSourceEdit.py 19 January 2005, 04:12:38 UTC
3fccd95 fix a bunch of spelling errors (closes SF patch #1104868) 19 January 2005, 03:45:39 UTC
519d31d remove spurious line from widget variables example (closes SF patch #1094815) 19 January 2005, 03:27:18 UTC
098d79d Backport rpc.py rev 1.28 dating from 21Jan04 rpc.py:SocketIO - Large modules were generating large pickles when downloaded to the execution server. The return of the OK response from the subprocess initialization was interfering and causing the sending socket to be not ready. Add an IO ready test to fix this. Moved the polling IO ready test into pollpacket(). Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError". idlever.py should be 1.0.4 to align with NEWS.txt. There was no IDLE release at 2.3.1 which accounts for the unsync. M NEWS.txt M idlever.py M rpc.py 19 January 2005, 01:44:06 UTC
7c89f1a Backport Patch #850977: Detect Tk on FreeBSD and OpenBSD. 17 January 2005, 21:07:52 UTC
9075cc4 If an extension can't be loaded, print warning and skip it instead of erroring out. 17 January 2005, 20:34:49 UTC
b7af39c Improve error handling when .idlerc can't be created. This is a partial backport of configHandler.py, Revision 1.36, 11Jan05. 17 January 2005, 20:06:47 UTC
e6ce1e7 update in readiness for 2.3.5 release 17 January 2005, 13:06:27 UTC
cd82266 backport: make thread stack size compile-time tunable on OS/2, incr main stack 17 January 2005, 12:22:38 UTC
811ded0 backport: make thread stack size compile-time tunable on OS/2 17 January 2005, 12:21:28 UTC
904688b Backport of fixes for #887242 and #1097739: If $MACOSX_DEPLOYMENT_TARGET is set, and >= 10.3, during configure we setup extensions to link with dynamic lookup. We also record the value in the Makefile, and distutils uses the same value to build extension modules. If MACOSX_DEPLOYMENT_TARGET is not set it defaults to the current OSX version. If we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier) we link extensions directly against the dynamic library in the framework in stead of against the framework. This will fix building extensions for 2.3 after 2.4 has been installed too. 11 January 2005, 13:49:02 UTC
b3dbb01 Backport latest version of whatsnew23: fix typos, remove a GC-related item; add an item 07 January 2005, 14:43:39 UTC
fc49019 Backport of 1.38: Allow relative URLs for included databases and packages. 07 January 2005, 13:48:53 UTC
ae278a3 Backport of 1.20: Workaround for the fact that urllib2 doesn't default to "file:" urls. 07 January 2005, 12:57:08 UTC
15f51d7 Merging the current development changes for the idle wrapper. 05 January 2005, 04:59:29 UTC
6db8cd1 Mac news items. 04 January 2005, 16:07:04 UTC
0446d8f Backport of 1.55 and 1.57: - Added quotes around the destroot arguments, so empty destroot works. - Run fixapplepython23 script to check whether Apple's Python 2.3 needs to be patched. 04 January 2005, 16:05:33 UTC
b5442f4 Fix for #1076490 submitted by Neil Mayhew: a serious typo means BuildApplication has never worked in 2.3. I guess that shows how popular MacOS9 is:-) 04 January 2005, 15:25:48 UTC
3b49289 Added one-liner about pimp 0.5 03 January 2005, 16:00:28 UTC
451e02b Backport of 1.37: - Added an "installer" flavor, which uses the "open" command to install something (overridable through Install-command entry) - Hidden status is now determined by flavor == hidden, not by missing Download-URL. Hidden packages behave like installer packages. - Made some error messages a bit more understandable. Because there's new functionality the version has been upped to 0.5. 03 January 2005, 15:46:30 UTC
4a2784d Getting things in place for the MacPython additions build 3. 02 January 2005, 23:19:40 UTC
d7f377d Backported from the trunk. 02 January 2005, 23:18:07 UTC
9858a5a This commit was manufactured by cvs2svn to create branch 'release23-maint'. 02 January 2005, 23:18:07 UTC
04fa4b9 Added a band-aid to make this script work with the older 2.3.0 buildtools if no destroot option is given. That makes life for the additions installer a lot simpler. 02 January 2005, 23:17:06 UTC
f360939 Backport: Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot option to various tools, and do the right thing when we're doing a destroot install. 31 December 2004, 10:44:41 UTC
600a2c7 Spaces in stead of tabs. 30 December 2004, 22:43:29 UTC
85e6c71 Patch 728330: Fix compilation problems on IRIX. 30 December 2004, 13:52:17 UTC
5a56126 Backport of 1.36: - getDefaultDatabase wasn't listed in __all__. - using a different database for non-final releases should only be done for X.Y.0. Non-final micro releases can use the default database just fine, as they are required to be backward compatible. 28 December 2004, 21:53:15 UTC
f3478d9 [Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case 28 December 2004, 20:31:27 UTC
b0757b8 Use zlib test suite from the trunk (rev. 2.67) on the 2.3 maintenance branch 28 December 2004, 20:26:00 UTC
f96a57e - Changed version numbers to get ready for 2.3.5 - Various of the mods to build the 3rd MacPython additions (but not all). 27 December 2004, 16:41:57 UTC
d3c0cab Fix mention of TextEdit so that it mentions it can save in plaintext. 24 December 2004, 02:42:19 UTC
45547e4 Bump idle version. 23 December 2004, 04:33:50 UTC
d2186e5 The GUI was hanging if the shell window was closed while a raw_input() was pending. Restored the quit() of the readline() mainloop(). http://mail.python.org/pipermail/idle-dev/2004-December/002307.html M NEWS.txt M PyShell.py 23 December 2004, 04:26:55 UTC
64d7771 Recompiled after source file changes. 22 December 2004, 16:11:32 UTC
69bb987 Document bdist_wininst changes. 22 December 2004, 16:10:33 UTC
6e35b18 Close stdout and stderr, which are redirected into a temp file, before trying to remove this file - the file was never removed before. Completes the fix for [ 1067732 ] wininst --install-script leaves residual files on C:\\ 22 December 2004, 15:46:01 UTC
8f67c3e Backport a patch from Mark Hammond. Partial fix for [1067732] - "wininst --install-script leaves residual files on C:\" 'tempnam()' is used rather than 'tmpnam()' - 'tmpnam' creates a temp file on the root of the current drive, and if this is readonly explains the 'freopen' errors occasionally reported. 'tempnam' creates the temp file in the %TEMP% directory. 22 December 2004, 15:35:20 UTC
ed70c40 Backport from trunk, rev. 1.11 and 1.12. Don't hardcode the Python version number. 22 December 2004, 15:12:46 UTC
05a24d7 * closes SF bug/patch 967763 - fixes various memory leaks found by valgrind and a follup closer code inspection of the bsddb module. (merges r1.32 of _bsddb.c and an associated test case) - also merges the one line r1.37 _bsddb.c fix that fixes a leak on the rare DBEnv creation failed error path. 19 December 2004, 23:59:51 UTC
923fae4 In 1.17.6.4 part of the patch committed in 1.17.6.3 got reapplied to the end of a second function whos code was identical enough for patch not to reject the patch. this reverses that misapplication (only the DBC_set_range method needed modification, not DBC_set as well). This problem only exists in the release32-maint branch. 19 December 2004, 23:27:48 UTC
139af55 redo this patch on release23-maint rather than release23-branch: revision 1.17.4.1 date: 2003/11/03 21:37:43; author: greg; state: Exp; lines: +9 -9 * SF patch 835100 - C++ // comments are not allowed. use /* */ 19 December 2004, 22:39:01 UTC
85b1983 Backport of fix for bug #1083645; skip test_imp if threading is not available. 18 December 2004, 21:09:04 UTC
3497a04 fix unterminated comment 18 December 2004, 09:46:18 UTC
7c80d34 OS/2 specific fixes related to SF bug # 1003471. Also revise a related function to minimise file handle/pipe leakage and improve reliability. Backported from -HEAD. 12 December 2004, 08:37:08 UTC
51420d3 backport of OS/2 specific fixes related to SF bug # 1003471 12 December 2004, 08:36:02 UTC
79c8469 Fix typo about what method to call when expand_tabs is true. 11 December 2004, 09:56:08 UTC
3f6e8ec backport weekheader() doc fix to 2.3 06 December 2004, 21:27:29 UTC
58a8a33 Don't have test_mkalias_relative exexute if sys.prefix does not exist. Backport of fix for bug #1077302. 06 December 2004, 06:19:24 UTC
3ad8fb5 remove comment that's about to become obsolete 05 December 2004, 07:50:14 UTC
c57bd88 Taken from 2.4/HEAD: - Bug #875692: Improve signal handling, especially when using threads, by forcing an early re-execution of PyEval_EvalFrame() "periodic" code when things_to_do is not cleared by Py_MakePendingCalls(). 01 December 2004, 07:36:58 UTC
b7754e1 Fix SF bug #1061770: Manual typesets bit-shift operators as guillemet 11 November 2004, 06:16:42 UTC
512f2ee Backported thread fixes from 2.4 (by mostly copying pystate.c over from 2.4): * using malloc() and free() directly, as explained in the new comment * coding style in the PyGILState_*() functions * the recent destroy-tstate-without-holding-the-GIL bug * lock fixes and many more comments in thread.c 09 November 2004, 15:35:23 UTC
3497155 get_boundary(): Fix for SF bug #1060941. RFC 2046 says boundaries may begin -- but not end -- with whitespace. 06 November 2004, 00:14:05 UTC
8bd9db2 test_boundary_with_leading_space(): Test case for SF bug #1060941. RFC 2046 says boundaries may begin -- but not end -- with whitespace. 06 November 2004, 00:13:46 UTC
9bd57b1 add a PNG version of pyfav.gif 05 November 2004, 04:41:58 UTC
646fe59 add encouragement to contribute without learning LaTeX (closes SF bug #948517) 05 November 2004, 04:24:24 UTC
0ab7093 fix markup in "title" attribute for \citetitle{} (closes SF patch #1054715; backported from trunk revision 1.151) 04 November 2004, 03:25:23 UTC
d8f5802 clarify discussion of iteration in the section on the "for" statement (SF bug #829073) 02 November 2004, 19:18:20 UTC
e193806 clarify trailing comma in function argument list (SF bug #798652) 02 November 2004, 18:59:18 UTC
687ed47 - show how to use file.write() with a non-string value (closes SF bug #621057) - add missing whitespace around assignment operator (backported from trunk revision 1.257) 02 November 2004, 18:26:05 UTC
92dee4b SF bug #1030118, this should have named the email.Utils module as the one containing these functions. (I will backport to Python 2.3) 01 November 2004, 04:00:06 UTC
64173c8 handle_weakrefs(): Simplification -- there's no need to make a second pass over the unreachable weakrefs-with-callbacks to unreachable objects. 31 October 2004, 22:27:45 UTC
7d37a2a SF 1055820: weakref callback vs gc vs threads In cyclic gc, clear all weakrefs to unreachable objects before allowing any Python code (weakref callbacks or __del__ methods) to run. This is a critical bugfix, affecting all versions of Python since weakrefs were introduced. 31 October 2004, 00:13:07 UTC
d9016a0 Backport of fix for bug of year/<week of year>/<day of week> calculation that didn't handle %U for years starting on Monday. 28 October 2004, 04:50:28 UTC
35018c7 add missing line break 25 October 2004, 21:41:57 UTC
f966e25 Backport from trunk: SF bug 917108: warnings.py does not define _test(). Removed the entire __name__ == '__main__' block. 22 October 2004, 10:29:56 UTC
2712d96 Add item 20 October 2004, 11:55:54 UTC
42a6bfc [Patch #1043972, for bug #1017553] filemode() returns an incorrect value for the mode 07111 20 October 2004, 11:49:28 UTC
36745d0 Add item 19 October 2004, 19:55:35 UTC
7d331a8 Typo fixes, and a minor edit to clarify a sentence 19 October 2004, 19:40:58 UTC
919491d [Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann 19 October 2004, 19:34:07 UTC
e2f12bb [Bug #1049826] Update version of zlib referenced in text 19 October 2004, 18:53:46 UTC
9c183d2 Add support for using %U and %W in strptime when year and day of the week are also specified. Closes bug #1045381. 18 October 2004, 01:56:17 UTC
f0d0193 SF bug #1048756, Doc typo for pdb 17 October 2004, 19:56:40 UTC
ede11de SF patch #1047577, typo in liblocale.tex 17 October 2004, 16:46:28 UTC
5c4b61d Fix for SF bug # 1010102. The default is PureProxy not SMTPProxy. 09 October 2004, 21:43:47 UTC
back to top