https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
0ae7228 This commit was manufactured by cvs2svn to create tag 'r234c1'. 13 May 2004, 05:34:43 UTC
e3bf685 update to match Lib/idlelib/NEWS version number 13 May 2004, 05:34:43 UTC
2726231 SF #847346: remove misguided optimization for short input from wrap() method. Premature optimization is indeed the root of all evil. Whitespace fix. 13 May 2004, 01:48:15 UTC
6e35b68 SF #847346: add test_fix_sentence_endings() to ensure that sentence endings get fixed even if the input is too short to wrap. Also throw in a bunch of other tests for this rather tricky and under-tested feature. In WrapTestCase.setUp(), don't bother setting fix_sentence_endings=True for self.wrapper -- just use a separate wrapper in the two tests that care about it, namely test_whitespace() and test_fix_sentence_endings(). 13 May 2004, 01:45:33 UTC
163addf Version '2.3.4c1' File name 'Python-2.3.4c1.exe' Change company to 'Python Software Foundation' Add year 2004 to the copyright. Include tix into the distribution. 12 May 2004, 20:04:18 UTC
d50abca Windows build number for 2.3.4c1 is 52. 12 May 2004, 19:51:26 UTC
4993bca Fix version number (2.3.4c1) and release date (12-May-2004). 12 May 2004, 19:50:27 UTC
17fc902 2.3.4 is derived from 2.3.3, not from itself. 12 May 2004, 18:04:42 UTC
a1a514b set target date for Python 2.3.4 release 12 May 2004, 04:13:18 UTC
11b3d2f fix various descriptions of "ctime" (closes SF patch #870287) 12 May 2004, 03:47:01 UTC
e6f36ad backport 1.17, 1.18 from the trunk: PyErr_SetInterrupt not Obsolete (closes SF patch #919299) 12 May 2004, 03:22:57 UTC
69faa22 fix various typos; thanks, George Yoshida! (closes SF patch #952047) 12 May 2004, 03:03:45 UTC
9b201fb add note about the __name__ read-only attribute (closes SF bug #952212) 12 May 2004, 02:47:56 UTC
be85326 Update copyright years. In the Windows resource, change the name of the company to the PSF (Zope Corp and PythonLabs no longer have anything to do with this!). 11 May 2004, 18:11:11 UTC
d71fc05 super_getattro(): Repaired compiler warning about mixed-type comparison. 11 May 2004, 16:35:05 UTC
e1ba47a update the version information in preparation for release (the documentation tools use this) 11 May 2004, 15:21:20 UTC
d678298 Fix SF item #876278: Unbounded recursion in modulefinder. 11 May 2004, 15:00:07 UTC
72959cc use tools/getversioninfo to extract the version number from the Python sources 11 May 2004, 14:37:25 UTC
04b3734 remove assignment to unused variable 11 May 2004, 14:35:19 UTC
fada58f update to reflect the current location of the SF bugs search box 11 May 2004, 14:14:02 UTC
0c16beb markup adjustment 11 May 2004, 05:30:09 UTC
77acf2b In order to fix SF bug # 824977, we replace calloc()/free() calls in binascii_a2b_qp() and binascii_b2a_qp() with calls to PyMem_Malloc() and PyMem_Free(). These won't return NULL unless the allocations actually fail, so it won't trigger a bogus memory error on some platforms <cough>AIX</cough> when passed a length of zero. 11 May 2004, 02:07:03 UTC
57f15af SF #832236: wrap a bunch of _EXPORT_INT calls in #ifdef's, to avoid breaking the build on MkLinux (Linux 2.0). 11 May 2004, 01:33:04 UTC
bea27f3 Added a note describing how fp should be opened in binary mode, especially on Windows. Closes SF # 586899. 10 May 2004, 23:12:27 UTC
af6f374 don't make assumptions about $PATH in Cygwin instructions 10 May 2004, 18:39:01 UTC
1d53b5c Fix [ 738973 ] urllib2 CacheFTPHandler doesn't work on multiple dirs, as implemented in patch [ 851736 ]. 10 May 2004, 00:32:34 UTC
4fc2a79 test_mime_attachments_in_constructor(): New test to check for SF bug # 884030. 09 May 2004, 18:00:56 UTC
98ef300 SF patch # 884030 by Amit Aronovitch; fixes the _subpart argument to match documented semantics. 09 May 2004, 18:00:02 UTC
3f98df0 Add this year to the copyright notices, and label it 2.3.4. 09 May 2004, 17:13:51 UTC
6684f0d Mention changes to platform.py. 08 May 2004, 23:20:39 UTC
9fbc161 SF #950057: itertools.chain doesn't "process" exceptions as they occur Both cycle() and chain() were handling exceptions only when switching input sources. The patch makes the handle more immediate. 08 May 2004, 20:57:16 UTC
eda9da7 SF #950057: itertools.chain doesn't "process" exceptions as they occur Both cycle() and chain() were handling exceptions only when switching input sources. The patch makes the handle more immediate. 08 May 2004, 19:52:39 UTC
5ea315b Record UnixWare 7.1.4 as broken. Fixes #929689. 07 May 2004, 19:13:47 UTC
d7fc2b9 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. 07 May 2004, 07:16:33 UTC
d532acd [Bug #945063 backport] Get file extension correct. 06 May 2004, 13:18:26 UTC
c17cdd6 note that descriptor objects must be instances of new-style types (closes SF bug #817742) 06 May 2004, 12:45:45 UTC
7dea43f fix documentation for ContentHandler.ignorableWhitespace() (closes SF bug #881707) 06 May 2004, 03:48:33 UTC
a8c825c Consider output encoding in XMLGenerator. Fixes #938076. 06 May 2004, 02:22:23 UTC
c711172 Properly delegate startElementNS in saxutils.XMLFilterBase. Fixes #936637. 06 May 2004, 02:03:13 UTC
d60df17 Patch #944110: Properly process empty passwords. Fixes #944082. 06 May 2004, 01:40:57 UTC
e3ea901 Patch #940026: Explain "in" when it is first used. 06 May 2004, 01:34:56 UTC
93389ae Merge all fixes from Python 2.4. This includes: 1.12 Added more Windows version names (thanks to Thomas Heller). Fixed bug in platform() cache (thanks to Brett Cannon). 1.10,1.11 Fixed a caching bug in platform.platform() where the argument of 'terse' was not taken into consideration when caching value. 05 May 2004, 23:58:03 UTC
b3ec007 - note that __getinitargs__() is only for old-style classes - describe __getnewargs__() (with index entry) (closes SF bug #873246) 05 May 2004, 04:57:01 UTC
16e1df3 Remove list of pickle protocol names used by the copy module; there are enough subtleties to pickling that we don't want misunderstanding to spread because we don't provide all the information twice. The reference to the pickle module for information will have to suffice; at least only one portion of the docs will be out of date. ;-( 05 May 2004, 04:24:53 UTC
6777b2e note that the error code for socket.gaierror will be one of the EAI_* constants (closes SF bug #837929) 05 May 2004, 04:15:30 UTC
2956b68 SF #814606: fix mixer docs to talk about "controls", not "channels". General cleanup of mixer docs, especially clarifying which exceptions are thrown when. Trim \platform{}, add \versionadded{}. 05 May 2004, 01:33:21 UTC
8bb374b Document readline module functions added in Python 2.3. See: http://mail.python.org/pipermail/python-dev/2003-September/037922.html for background. It appears I forgot to ever submit a bug report or patch. 04 May 2004, 19:27:35 UTC
ee6e149 Using reversed() is not compatible with Python 1.5.2. 04 May 2004, 18:18:23 UTC
082b0f0 Fix [ 947405 ] os.utime() raises bad exception for unicode filenames. 04 May 2004, 08:07:49 UTC
2dbc9cd Do not use the default namespace for attributes. Fixes http://bugs.debian.org/229885 02 May 2004, 20:37:47 UTC
520c341 the headers in an HTTP request are HTTP headers, not MIME headers 29 April 2004, 02:47:09 UTC
e4e110e remove out-of-date count of the functions in winsound 28 April 2004, 03:57:30 UTC
21527f7 fix typo reported in a long-buried email 28 April 2004, 03:16:29 UTC
335cdc0 SF bug #940579: section 5.10: 'not' returns boolean, not int 23 April 2004, 17:14:35 UTC
97000fa As discussed on python-dev, a script for the free Inno Setup tool which will create a windows installer containing only the Python debugging binaries. They will be installed alongside an existing Python installation, the location is read from the registry. This allows easy building and debugging of own compiled extensions. 22 April 2004, 18:24:30 UTC
05bacbd SF #926075: Fixed the bug that returns a wrong pattern object for a string or unicode object in sre.compile() when a different type pattern with the same value exists. 20 April 2004, 21:32:33 UTC
e9d1c7f SF #926075: Fixed the bug that returns a wrong pattern object for a string or unicode object in sre.compile() when a different type pattern with the same value exists. 20 April 2004, 21:16:06 UTC
a2f7936 Special case normalization of empty strings. Fixes #924361. 17 April 2004, 19:36:13 UTC
202b6fb SF bug #936827: PyNumber_And() 's description Fix typo. 17 April 2004, 11:59:55 UTC
6d54c6b Whitespace cleanup. 16 April 2004, 20:15:33 UTC
4852f50 The Windows installer for Python 2.3.4 will include tix. 16 April 2004, 20:13:57 UTC
d271a5f Add tcl test results on Windows XP. Add instructions how to build tix - will probably be included in Python 2.3.4. 16 April 2004, 20:09:57 UTC
b143e4e backport of patch #934971. 16 April 2004, 03:30:33 UTC
f5feaa8 Recompiled the binary wininst.exe after this change: When loading the Python dll to run the postinstall script, try to load it from the install directory (as reported by the registry) in case it is not found on the default Loadlibrary search path. Fixes SF 935091: bdist_winist post-install script fails on non-admin Python Will port to the trunk later. 15 April 2004, 17:51:59 UTC
a98ec84 When loading the Python dll to run the postinstall script, try to load it from the install directory (as reported by the registry) in case it is not found on the default Loadlibrary search path. Fixes SF 935091: bdist_winist post-install script fails on non-admin Python Will port to the trunk later. 15 April 2004, 17:50:42 UTC
e117bde remove bogus markup that caused the docs to be wrong 15 April 2004, 06:18:28 UTC
5c4a408 Backport checkin> Bug #934635: Fixed a bug where the configure script couldn't detect getaddrinfo() properly if the KAME stack had SCTP support. (Submitted by SUZUKI Shinsuke) 14 April 2004, 08:11:31 UTC
2c73bc0 add AF_UNIX notes 11 April 2004, 12:13:53 UTC
fea6d1a Backport to 2.3: Fixes for AF_UNIX support on OS/2: - return the full size of the sockaddr_un structure, without which bind() fails with EINVAL; - set test_socketserver to use a socket name that meets the form required by the underlying implementation; - don't bother exercising the forking AF_UNIX tests on EMX - its fork() can't handle the stress. 11 April 2004, 12:12:31 UTC
7eb57e0 give rational filenames to some of the generated HTML 08 April 2004, 19:45:36 UTC
e52aa4f include both the GIF and PNG icons in the HTML package 08 April 2004, 16:38:10 UTC
820fd04 avoid stripping space after indexing macros 08 April 2004, 15:46:56 UTC
6a2a3b6 Backport to 2.3 to support Zope 2.7 on OS/2: OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation that the socket name must start with /socket32/. Unlike Unix systems, this file never exists in the file system. 04 April 2004, 07:19:27 UTC
fc019dd Backport to 2.3 to support Zope 2.7 on OS/2: OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied with major C compilers (VACPP, EMX+gcc and [Open]Watcom). Also tidy up the export of spawn*() symbols in the os module to match what is found/implemented. 04 April 2004, 07:17:05 UTC
9ed9329 Backport to 2.3: If a file is opened with an explicit buffer size >= 1, repeated close() calls would attempt to free() the buffer already free()ed on the first close(). [bug introduced with patch #788249] Making sure that the buffer is free()ed in file object deallocation is a belt-n-braces bit of insurance against a memory leak. 04 April 2004, 07:08:20 UTC
4b9fe25 #928751, fix typos in socket doc 03 April 2004, 18:03:51 UTC
5c51de0 remove workarounds to prevent "--" in code from being improperly munged to single hyphens in the HTML output; this is no longer needed now that ../perl/python.perl makes things just work 01 April 2004, 16:38:44 UTC
58c0c52 Fix support for the "prog" keyword to the OptionParser constructor, as well as directly setting the .prog attribute (which should be supported based on the class docstring). Closes SF bug #850964. 01 April 2004, 07:38:49 UTC
7e87944 backport trunk revision 1.144, closing SF bug #793702: - make "--" in code text not get converted to "-" - fix minor typo in comment (but this time the typo is fixed correctly!) 01 April 2004, 04:33:39 UTC
3d0c805 Note that reading from a socket may not always return all of the remaining content of a stream when expected to do so. Closes SF bug #725265. Backported from trunk revision 1.52. 01 April 2004, 04:11:05 UTC
07d08d9 - make sure the methods minidom adds to the basic DOM are attributed to Node objects in the index (closes SF bug #832251) - fix a variety of markup nits Backported from trunk revision 1.9. 01 April 2004, 04:06:52 UTC
40039f2 backport fix for SF bug #796042: sdist ignores scripts argument in setup The fix adds a get_source_files() method to the build_scripts command and adds the result to the default manifest list. 01 April 2004, 03:56:46 UTC
0cb9075 Patch #924497: find(1) all files with /usr/local/bin/python in them. 31 March 2004, 18:58:42 UTC
58eddb1 Backport 1.17: When /tmp has certain sticky bits set, newly created subdirectories inherit those bits, causing the test_mkdtemp.test_mode() test to fail. Remove those before comparing the actual mode to the expected mode. 31 March 2004, 18:55:17 UTC
3337eb7 add missing and forthcoming releases 31 March 2004, 08:02:55 UTC
797ded0 Emphasize the requirement that Python.h be included first more strongly. Closes SF bug #837228; backported from the head. 31 March 2004, 07:48:14 UTC
174548d Keybindings with the Shift modifier now work correctly. So do bindings which use the Space key. Limit unmodified user keybindings to the function keys. Python Bug 775353, IDLEfork Bugs 755647, 761557 Improve error handling during startup if there's no Tkinter. M NEWS.txt M PyShell.py M config-keys.def M configHandler.py M keybindingDialog.py 30 March 2004, 04:07:00 UTC
61525be OS/2 VACPP build updates/fixes 29 March 2004, 11:58:55 UTC
f0deb87 remove out-of-date warning 26 March 2004, 17:10:33 UTC
a909752 Fix last patch to make backwards-compatible with Python 1.5.2 . Bumped up micro version number. 25 March 2004, 18:35:38 UTC
a4645bf Fixed a caching bug in platform.platform() where the argument of 'terse' was not taken into consideration when caching value. 25 March 2004, 16:56:14 UTC
7c28696 SF bug #921927: Fixed a typo/thinko spelling "parameter" as "paramter" 25 March 2004, 08:55:58 UTC
f12b642 Ensure super() lookup of descriptor from classmethod works (SF ID# 743627) (Backport to 2.3 maintenance branch) 25 March 2004, 02:36:29 UTC
8fcae09 Convert input to a string object. Fixes #909230. 23 March 2004, 23:42:54 UTC
886756f Decref all if ensure_fromlist fails. Fixes #876533. 23 March 2004, 16:28:45 UTC
c7ccc24 Backport for bug fix of 2.204. 22 March 2004, 20:41:47 UTC
42b2cbc Backported fix of revision 2.217. 22 March 2004, 20:39:42 UTC
eeeca4a Added check for broken poll on OSes where it exists but sets errno for bad file descriptor. Fixes SF Bug #850981 22 March 2004, 20:20:33 UTC
07bc3a3 Backport checkin: [Bug #920575] Add a workaround for GNU libc nl_langinfo()'s returning NULL. 21 March 2004, 19:53:59 UTC
af2e75f Fix test_strftime.py to escape locale time values that have characters that might be mistaken for regex syntax. Fixes bug #883604 . 20 March 2004, 23:13:49 UTC
back to top