https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
54e3cf0 Add missing svn:eol-style property to text files. 02 August 2006, 18:19:35 UTC
961b91b Correction of patch #1455898: In the mbcs decoder, set final=False for stream decoder, but final=True for the decode function. 02 August 2006, 13:53:55 UTC
5c387f2 Fix a mistake. 02 August 2006, 12:00:13 UTC
6a0ce40 A few nore words about what ctypes does. Document that using the wrong calling convention can also raise 'ValueError: Procedure called with the wrong number of arguments'. 02 August 2006, 11:35:31 UTC
5d32a9f pre-release machinations 02 August 2006, 07:43:09 UTC
30eb966 Add some explanation about Klocwork and Coverity static analysis 02 August 2006, 07:09:32 UTC
9b0ca79 Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during a socket operation on a socket with a timeout, the exception will be caught correctly. Previously, the exception was not caught. 02 August 2006, 06:46:21 UTC
3ee5941 Let us know when there was a problem and the child had to kill the parent 02 August 2006, 06:19:19 UTC
c0328d1 v is already checked for NULL, so just DECREF it 02 August 2006, 06:15:10 UTC
c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. 02 August 2006, 06:14:22 UTC
5fb9c20 Updated documentation for the script that builds the OSX installer. 02 August 2006, 06:10:10 UTC
a05f6e2 _Stream.close(): Try to kill struct.pack() warnings when writing the crc to file on the "PPC64 Debian trunk" buildbot when running test_tarfile. This is again a case where the native zlib crc is an unsigned 32-bit int, but the Python wrapper implicitly casts it to signed C long, so that "the sign bit looks different" on different platforms. 02 August 2006, 05:20:08 UTC
99dfe3c Prevent memory leak on error. Reported by Klocwork #36 02 August 2006, 04:27:11 UTC
62decc9 Try to squash struct.pack warnings on the "amd64 gentoo trunk" buildbot (& possibly other 64-bit boxes) during test_gzip. The native zlib crc32 function returns an unsigned 32-bit integer, which the Python wrapper implicitly casts to C long. Therefore the same crc can "look negative" on a 32-bit box but "look positive" on a 64-bit box. This patch papers over that platform difference when writing the crc to file. It may be better to change the Python wrapper, either to make the result "look positive" on all platforms (which means it may have to return a Python long at times on a 32-bit box), or to keep the sign the same across boxes. But that would be a visible change in what users see, while the current hack changes no visible behavior (well, apart from stopping the struct deprecation warning). Note that the module-level write32() function is no longer used. 02 August 2006, 04:12:36 UTC
4edcba6 Whitespace normalization. 02 August 2006, 03:27:46 UTC
26cad08 This fixes bug #1527397: PythonLauncher runs scripts with the wrong working directory. It also fixes a bug where PythonLauncher failed to launch scripts when the scriptname (or the path to the script) contains quotes. 01 August 2006, 21:00:57 UTC
0f53bb1 Make sure the postinstall action that optionally updates the user's profile on MacOS X actually works correctly in all cases. 01 August 2006, 20:30:31 UTC
d61d073 Speed up PyType_stgdict and PyObject_stgdict. 01 August 2006, 19:14:15 UTC
07fec3a os.urandom no longer masks unrelated exceptions like SystemExit or KeyboardInterrupt. 01 August 2006, 18:49:24 UTC
86e1e38 [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. Patch by Douglas Greiman. The test_run_abort() testcase produces a core file on Unix systems, even though the test is successful. This can be confusing or alarming to someone who runs 'make test' and then finds that the Python interpreter apparently crashed. 01 August 2006, 18:16:15 UTC
11d68a6 Minimal useful docstring for CopyComPointer. 01 August 2006, 17:46:10 UTC
3de83e9 Fix a potential segfault and various potentail refcount leaks in the cast() function. 01 August 2006, 16:54:43 UTC
5a51bf5 typo fix 01 August 2006, 16:24:30 UTC
fe5004f Update list of files; fix a typo 31 July 2006, 16:27:57 UTC
b7697a5 [Bug #848556] Remove \d* from second alternative to avoid exponential case when repeating match 31 July 2006, 16:22:05 UTC
aa95fdb [Bug #1514540] Instead of putting the standard types in a section, put them in a chapter of their own. This means string methods will now show up in the ToC. (Should the types come before or after the functions+exceptions+constants chapter? I've put them after, for now.) 31 July 2006, 16:10:24 UTC
fbf9699 Fix function name. 31 July 2006, 16:00:34 UTC
ec3a894 Remove reference to notation 31 July 2006, 15:23:43 UTC
17159fe Typo fix 31 July 2006, 15:22:58 UTC
04c897a Mention csv newline changes 31 July 2006, 13:18:27 UTC
4bcfe53 Add PyErr_WarnEx() 31 July 2006, 12:52:26 UTC
555ac45 Document PyErr_WarnEx. (Bad Neal! No biscuit!) Is the explanation of the 'stacklevel' parameter clear? Please feel free to edit it. I don't have LaTeX installed on this machine, so haven't verified that the markup is correct. Will check tonight, or maybe the automatic doc build will tell me. 31 July 2006, 12:39:05 UTC
43bae41 Add refcounts for PyErr_WarnEx 31 July 2006, 12:20:24 UTC
759c185 minor tweaks 31 July 2006, 03:11:11 UTC
08bbccf minor tweaks 31 July 2006, 03:09:45 UTC
f79c32d ZipFile.close(): Kill the other struct.pack deprecation warning on Windows. Afraid I can't detect a pattern to when the pack formats decide to use a signed or unsigned format code -- appears nearly arbitrary to my eyes. So I left all the pack formats alone and changed the special-case data values instead. 31 July 2006, 02:53:03 UTC
352bf0d ZipFile.close(): Killed one of the struct.pack deprecation warnings on Win32. Also added an XXX about the line: pos3 = self.fp.tell() `pos3` is never referenced, and I have no idea what the code intended to do instead. 31 July 2006, 02:40:23 UTC
10183b8 Redo the comment about the 2.5 change in quoted-newline handling. 31 July 2006, 02:27:48 UTC
6458452 Whitespace normalization. 31 July 2006, 01:46:03 UTC
5b654ea Bug #1531349: right <-> left glitch in __rop__ description. 30 July 2006, 20:18:51 UTC
313f8a9 Try to prevent hangs on Tru64/Alpha buildbot. I'm not certain this will help and may need to be reverted if it causes problems. 30 July 2006, 19:20:42 UTC
ec3c5e3 Verify that the signal handlers were really called 30 July 2006, 19:18:38 UTC
c173b48 Add some asserts and update comments 30 July 2006, 19:18:13 UTC
499b0e6 Typo fix 30 July 2006, 16:41:30 UTC
c760527 Rename struct.pack_to to struct.pack_into as changed in revision 46642. 30 July 2006, 16:37:37 UTC
b142c63 Fix makefile changes for python-config. 30 July 2006, 16:20:10 UTC
0907f4d Drop usage of test -e in configure as it is not portable. Fixes #1439538 Will backport to 2.4 Also regenerate pyconfig.h.in. 30 July 2006, 14:09:47 UTC
7762158 Mention Cygwin in distutils error message about a missing VS 2003. Fixes #1257728. 30 July 2006, 13:27:31 UTC
1f30c37 Base __version__ on sys.version_info, as distutils is no longer maintained separatedly. 30 July 2006, 13:14:05 UTC
4e67838 Don't copy directory stat times in shutil.copytree on Windows Fixes #1525866. 30 July 2006, 13:00:31 UTC
e34ac7c Bug #1002398: The documentation for os.path.sameopenfile now correctly refers to file descriptors, not file objects. 30 July 2006, 11:07:23 UTC
ad6911b Clarify that __op__ methods must return NotImplemented if they don't support the operation. 30 July 2006, 10:53:32 UTC
a7edb11 Whitespace normalization 30 July 2006, 06:59:13 UTC
f71ec5a Bug #1515471: string.replace() accepts character buffers again. Pass the char* and size around rather than PyObject's. 30 July 2006, 06:57:04 UTC
07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). This provides the proper warning for struct.pack(). PyErr_Warn() is now deprecated in favor of PyErr_WarnEx(). As mentioned by Tim Peters on python-dev. 30 July 2006, 06:55:48 UTC
0d62a06 Patch #1531113: Fix augmented assignment with yield expressions. Also fix a SystemError when trying to assign to yield expressions. 30 July 2006, 06:53:31 UTC
33c3e29 - remove yet another reference to how commonly Tkinter is (thought to be) used - fix an internal section reference 30 July 2006, 05:55:39 UTC
2173111 remove possibly-outdated comment on what GUI toolkit is most commonly used; it is hard to know whether this is right, and it does not add valuable reference information at any rate 30 July 2006, 05:49:49 UTC
c3c805e update information on wxPython, from Robin Dunn 30 July 2006, 05:41:28 UTC
e0d4aec lots of markup nits, most commonly Unix/unix --> \UNIX 30 July 2006, 03:03:43 UTC
da9face Whitespace normalization. 30 July 2006, 00:58:15 UTC
ad416d0 [Bug #793553] Correct description of keyword arguments for SSL authentication 30 July 2006, 00:37:56 UTC
ca2e790 Minor typo fixes 30 July 2006, 00:27:34 UTC
d457a97 markup cleanups 29 July 2006, 23:34:57 UTC
2d5c8e3 Fix case for 'Unix' 29 July 2006, 21:30:21 UTC
b9a79c9 Follow TeX's conventions for hyphens 29 July 2006, 21:27:12 UTC
b5a701b Disable test_getnode too, since this is also unreliable. 29 July 2006, 20:37:08 UTC
a650fb3 fix minor markup error that introduced extra punctuation 29 July 2006, 20:21:25 UTC
175001d If the executable doesn't exist, there's no reason to try to start it. This prevents garbage about command not found being printed on Solaris. 29 July 2006, 20:20:52 UTC
abd51a3 Add a comment to the csv reader documentation that explains why the treatment of newlines changed in 2.5. Pulled almost verbatim from a comment by Andrew McNamara in <http://python.org/sf/1465014>. 29 July 2006, 20:06:05 UTC
45540b0 SF bug #1193966: Weakref types documentation misplaced The information about supporting weakrefs with types defined in C extensions is moved to the Extending & Embedding manual. Py_TPFLAGS_HAVE_WEAKREFS is no longer mentioned since it is part of Py_TPFLAGS_DEFAULT. 29 July 2006, 20:04:42 UTC
9964fdb [Patch #1068277] Clarify that os.path.exists() can return False depending on permissions. Fred approved committing this patch in December 2004! 29 July 2006, 19:50:37 UTC
2fde3bd Disable these tests until they are reliable across platforms. These problems may mask more important, real problems. One or both methods are known to fail on: Solaris, OpenBSD, Debian, Ubuntu. They pass on Windows and some Linux boxes. 29 July 2006, 19:29:35 UTC
a40191c [Patch #1490989 from Skip Montanaro] Mention debugging builds in the API documentation. I've changed Skip's patch to point to Misc/SpecialBuilds and fiddled with the markup a bit. 29 July 2006, 19:24:04 UTC
897afc4 emphasize and oddball nuance of LaTeX comment syntax 29 July 2006, 19:14:10 UTC
4a84788 document the footnote usage pattern 29 July 2006, 19:09:01 UTC
84608f0 make the reference to older versions of the documentation a link to the right page on python.org 29 July 2006, 18:33:29 UTC
9297e16 restore test un-intentionally removed in the xmlcore purge (revision 50941) 29 July 2006, 18:19:19 UTC
956597f Reorganize the docs for 'file' and 'open()' after some discussion with Fred. We want to encourage users to write open() when opening a file, but open() was described with a single paragraph and 'file' had lots of explanation of the mode and bufsize arguments. I've shrunk the description of 'file' to cross-reference to the 'File objects' section, and to open() for an explanation of the arguments. open() now has all the paragraphs about the mode string. The bufsize argument was moved up so that it isn't buried at the end; now there's 1 paragraph on mode, 1 on bufsize, and then 3 more on mode. Various other edits and rearrangements were made in the process. It's probably best to read the final text and not to try to make sense of the diffs. 29 July 2006, 18:14:07 UTC
fbdeaad expunge the xmlcore changes: 41667, 41668 - initial switch to xmlcore 47044 - mention of xmlcore in What's New 50687 - mention of xmlcore in the library reference re-apply xmlcore changes to xml: 41674 - line ending changes (re-applied manually), directory props 41677 - add cElementTree wrapper 41678 - PSF licensing for etree 41812 - whitespace normalization 42724 - fix svn:eol-style settings 43681, 43682 - remove Python version-compatibility cruft from minidom 46773 - fix encoding of \r\n\t in attr values in saxutils 47269 - added XMLParser alias for cElementTree compatibility additional tests were added in Lib/test/test_sax.py that failed with the xmlcore changes; these relate to SF bugs #1511497, #1513611 29 July 2006, 16:56:15 UTC
c032ee9 Set bug/patch count. Take a bow, everyone! 29 July 2006, 16:08:40 UTC
e49741d [Bug #1528258] Mention that the 'data' argument can be None. The constructor docs referred the reader to the add_data() method's docs, but they weren't very helpful. I've simply copied an earlier explanation of 'data' that's more useful. 29 July 2006, 15:57:08 UTC
aab30d0 Fix typo 29 July 2006, 15:55:30 UTC
8d9a01a Tweak wording 29 July 2006, 15:43:13 UTC
2d20a5f Typo fix 29 July 2006, 15:42:46 UTC
b9d7e04 [Bug #1530382] Document SSL.server(), .issuer() methods 29 July 2006, 15:35:21 UTC
52740be [Bug #1414697] Change docstring of set/frozenset types to specify that the contents are unique. Raymond, please feel free to edit or revert. 29 July 2006, 15:10:32 UTC
e2222a0 Fix docstring punctuation 29 July 2006, 14:43:55 UTC
7092f4c [Bug #1519571] Document some missing functions: setup(), title(), done() 29 July 2006, 14:42:48 UTC
dafb1e5 [Bug #1529157] Mention raw_input() and input(); while I'm at it, reword the description a bit 29 July 2006, 14:21:15 UTC
3ec3f78 Reword paragraph to match the order of the subsequent sections 29 July 2006, 14:08:15 UTC
144691c Update URL 29 July 2006, 14:04:47 UTC
35f64c1 Add example 29 July 2006, 13:56:48 UTC
5391216 update target version number 29 July 2006, 13:22:49 UTC
afcd838 Revert rev 42617, it was introduced to work around bug #1441397. test_compiler now passes again. 29 July 2006, 10:25:46 UTC
edd9b0d Bug #1441397: The compiler module now recognizes module and function docstrings correctly as it did in Python 2.4. 29 July 2006, 09:33:26 UTC
9fd21e3 Bug #835255: The "closure" argument to new.function() is now documented. 29 July 2006, 08:51:21 UTC
1393d6a Patch #1529514: More openbsd platforms for ctypes. Regenerated Modules/_ctypes/libffi/configure with autoconf 2.59. Approved by Neal. 28 July 2006, 21:43:20 UTC
84b7d3a Fix svn merge spew. 28 July 2006, 21:31:54 UTC
f7575d0 Bug #1529871: The speed enhancement patch #921466 broke Python's compliance with PEP 302. This was fixed by adding an ``imp.NullImporter`` type that is used in ``sys.path_importer_cache`` to cache non-directory paths and avoid excessive filesystem operations during imports. 28 July 2006, 21:12:07 UTC
back to top