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

sort by:
Revision Author Date Message Commit Date
aabc5f6 Mention uuid module 13 June 2006, 11:57:04 UTC
9015b93 Linecache contains support for PEP302 loaders, but fails to deal with loaders that return None to indicate that the module is valid but no source is available. This patch fixes that. 13 June 2006, 11:19:56 UTC
fdbebb6 Add back WCHAR, UINT, DOUBLE, _LARGE_INTEGER, _ULARGE_INTEGER. VARIANT_BOOL is a special _ctypes data type, not c_short. 13 June 2006, 09:40:14 UTC
a7e823f Add some windows datatypes that were missing from this file, and add the aliases defined in windows header files for the structures. 13 June 2006, 08:56:14 UTC
6d3d339 Verify the crash due to EncodingMap not initialized does not return 13 June 2006, 08:41:06 UTC
de4c78a Initialize the type object so pychecker can't crash the interpreter. 13 June 2006, 08:28:19 UTC
62bc8aa Don't fail if another process is listening on our port. 13 June 2006, 04:08:53 UTC
7ca6677 get_matching_blocks(): rewrote code & comments so they match; added more comments about why it's this way at all; and removed what looked like needless expense (sorting (i, j, k) triples directly should give exactly the same order as sorting (i, (i, j, k)) pairs). 13 June 2006, 03:30:07 UTC
2adc626 Added missing svn:eol-style property to text files. 13 June 2006, 00:30:50 UTC
edd66fa Whitespace normalization. 13 June 2006, 00:30:01 UTC
f9eb82f Add the uuid module. This module has been tested so far on Windows XP (Python 2.4 and 2.5a2), Mac OS X (Python 2.3, 2.4, and 2.5a2), and Linux (Python 2.4 and 2.5a2). 12 June 2006, 23:47:52 UTC
c2da994 Add pep-291 compatibility markers. 12 June 2006, 20:56:48 UTC
f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. This update fixes crash cases in the test suite where the default CRT error handler would cause process exit. 12 June 2006, 15:45:12 UTC
81f444b Make the -m switch conform to the documentation of sys.path by behaving like the -c switch 12 June 2006, 10:17:11 UTC
f0d02fb The site module documentation also described the Windows behaviour incorrectly. 12 June 2006, 08:27:13 UTC
f2b16f3 Fix site module docstring to match the code for Mac OSX, too 12 June 2006, 08:23:02 UTC
3fb55ca Fix site module docstring to match the code 12 June 2006, 08:19:37 UTC
ee3ea54 I don't know how that happend, but the entire file contents was duplicated. Thanks to Simon Percivall for the heads up. 12 June 2006, 06:05:57 UTC
70ee3cc Get rid of function pointer cast. 12 June 2006, 04:26:31 UTC
403019b Sync w/external release 0.1.2. Please see PEP 360 before making changes to external packages. 12 June 2006, 04:04:32 UTC
6e73aaa Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy copy is only in newer versions of zlib. This should allow zlibmodule to work with older versions like the Tru64 buildbot. 12 June 2006, 03:33:09 UTC
a6d80fa Impl ssize_t 12 June 2006, 03:05:40 UTC
052cbcf Remove unused import 12 June 2006, 03:05:03 UTC
245ce8d i and j are initialized below when used. No need to do it twice 12 June 2006, 02:16:10 UTC
909eb12 Fix the socket tests so they can be run concurrently. Backport candidate 12 June 2006, 02:13:21 UTC
b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed at the NeedForSpeed sprint. 12 June 2006, 02:11:18 UTC
2585ad5 Fix indentation of case and a Py_ssize_t issue. 12 June 2006, 02:09:34 UTC
7659f0f Fix typo. Backport if anyone cares. :-) 12 June 2006, 02:09:03 UTC
a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate 12 June 2006, 02:08:41 UTC
71e05f1 Don't truncate if size_t is bigger than uint 12 June 2006, 02:07:57 UTC
418b97e Cleanup: Remove import of types to get StringTypes, we can just use basestring. 12 June 2006, 02:07:24 UTC
047f3c7 Fix some Py_ssize_t issues 12 June 2006, 02:06:42 UTC
c707438 Fix some Py_ssize_t issues 12 June 2006, 02:06:17 UTC
09a29fa Cleanup Py_ssize_t a little (get rid of second #ifdef) 12 June 2006, 02:05:55 UTC
4a9ff16 Get test to pass on S/390. Shout if you think this change is incorrect. 11 June 2006, 21:38:38 UTC
06524b6 compare_generic_iter(): Fixed the failure of test_wsgiref's testFileWrapper when running with -O. test_simple_validation_error still fails under -O. That appears to be because wsgiref's validate.py uses `assert` statements all over the place to check arguments for sanity. That should all be changed (it's not a logical error in the software if a user passes bogus arguments, so this isn't a reasonable use for `assert` -- checking external preconditions should generally raise ValueError or TypeError instead, as appropriate). 11 June 2006, 20:52:59 UTC
896c1ea Fix test on PPC64 buildbot. It raised an IOError (really an URLError which derives from an IOError). That seems valid. Env Error includes both OSError and IOError, so this seems like a reasonable fix. 11 June 2006, 20:46:46 UTC
f054aeb Try to fix another networking test. The problem is that if hosts have a search path setup, some of these hosts resolve to the wrong address. By appending a period to the hostname, the hostname should only resolve to what we want it to resolve to. Hopefully this doesn't break different bots. Also add more info to failure message to aid debugging test failure. 11 June 2006, 20:42:02 UTC
a29fc29 Try to fix several networking tests. The problem is that if hosts have a search path setup, some of these hosts resolve to the wrong address. By appending a period to the hostname, the hostname should only resolve to what we want it to resolve to. Hopefully this doesn't break different bots. 11 June 2006, 20:25:56 UTC
c555554 - Change fixapplepython23.py to ensure that it will run with /usr/bin/python on intel macs. - Fix some minor problems in the installer for OSX 11 June 2006, 20:24:45 UTC
4fbb080 Use configure to substitute the correct prefix instead of hardcoding 11 June 2006, 20:23:29 UTC
e0cfb16 Remove message about using make frameworkinstall, that's no longer necesssary 11 June 2006, 19:45:57 UTC
231c3c8 Add missing svn:eol-style property to text files. 11 June 2006, 19:43:49 UTC
4f96f1f Whitespace normalization. 11 June 2006, 19:42:51 UTC
0d5d222 Release the GIL during COM method calls, to avoid deadlocks in Python coded COM objects. 11 June 2006, 17:04:22 UTC
0e0c9f4 Bug #1498146: fix optparse to handle Unicode strings in option help, description, and epilog. 11 June 2006, 16:24:11 UTC
d1c797e SF #1366250: optparse docs: fix inconsistency in variable name; minor tweaks. 11 June 2006, 14:42:41 UTC
19302d9 This patch improves the L&F of IDLE on OSX. The changes are conditionalized on being in an IDLE.app bundle on darwin. This does a slight reorganisation of the menus and adds support for file-open events. 11 June 2006, 14:33:36 UTC
6aaccc6 Fix errors found by pychecker 11 June 2006, 08:35:14 UTC
e588c2b Fix errors found by pychecker. I think these changes are correct, but I'm not sure. Could someone who knows how this module works test it? It can at least start on the cmd line. 11 June 2006, 07:27:56 UTC
d3c52de warnings was imported at module scope, no need to import again 11 June 2006, 07:26:50 UTC
f992a2b Fix errors found by pychecker 11 June 2006, 07:26:27 UTC
7d5b6e8 f_code can't be NULL based on Frame_New and other code that derefs it. So there doesn't seem to be much point to checking here. 11 June 2006, 05:48:14 UTC
8e6675a Update doc to make it agree with code. Bottom factor out some common code. 11 June 2006, 05:47:14 UTC
a754a22 Add versionadded to doc 11 June 2006, 05:45:47 UTC
3c5431e Wrap some long lines Top/Bottom factor out some common expressions Add a XXX comment about widing offset. 11 June 2006, 05:45:25 UTC
b4fcf8d Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL. We know it's not NULL from the ParseTuple and DbObject_Check will verify it's not NULL. 11 June 2006, 05:44:18 UTC
7f54740 Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately, i.e. do *not* expand tabs, but treat them as whitespace that is not equivalent to spaces. Add a couple of test cases. Clarify docs. 11 June 2006, 00:40:49 UTC
0e11595 shuffle() doscstring: Removed warning about sequence length versus generator period. While this was a real weakness of the older WH generator for lists with just a few dozen elements, and so could potentially bite the naive ;-), the Twister should show excellent behavior up to at least 600 elements. Module docstring: reflowed some jarringly short lines. 10 June 2006, 22:51:45 UTC
9a8ae8f Suppress warning on MacOSX about possible use before set of proc. 10 June 2006, 22:38:13 UTC
9af2b44 Handle failure of PyMem_Realloc. 10 June 2006, 22:01:50 UTC
9123edc Don't use C++ comment. 10 June 2006, 21:56:03 UTC
eb6dcf6 Fix the second occurrence of the problematic printf format. 10 June 2006, 21:17:58 UTC
5218ab2 Fix a wrong printf format. 10 June 2006, 21:07:19 UTC
82578c8 New docs for ctypes. 10 June 2006, 20:29:34 UTC
9a7e445 credit for SF patch #1303595 10 June 2006, 20:02:58 UTC
5e30626 SF patch #1303595: improve description of __builtins__, explaining how it varies between __main__ and other modules, and strongly suggest not touching it but using __builtin__ if absolutely necessary 10 June 2006, 20:01:34 UTC
5114826 Upgrade to ctypes version 0.9.9.7. Summary of changes: - support for 'variable sized' data - support for anonymous structure/union fields - fix severe bug with certain arrays or structures containing more than 256 fields 10 June 2006, 19:55:36 UTC
45f59ab Upgrade to ctypes version 0.9.9.7. Summary of changes: - support for 'variable sized' data - support for anonymous structure/union fields - fix severe bug with certain arrays or structures containing more than 256 fields 10 June 2006, 19:51:46 UTC
c5221e1 Sync with Optik docs (rev 518): * restore "Extending optparse" section * document ALWAYS_TYPED_ACTIONS (SF #1449311) 10 June 2006, 16:40:01 UTC
86116e2 document the class, not its initializer 10 June 2006, 14:09:11 UTC
0e8bd7e Patch #1495999: Part two of Windows CE changes. - update header checks, using autoconf - provide dummies for getenv, environ, and GetVersion - adjust MSC_VER check in socketmodule.c 10 June 2006, 12:23:46 UTC
acd0d6d SF bug #1503294. PyThreadState_GET() complains if the tstate is NULL, but only in debug mode. 10 June 2006, 10:57:40 UTC
787fe6d Port cygwin kill_python changes from 2.4 branch. 10 June 2006, 08:14:03 UTC
90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. Also improve error message on overflow. 10 June 2006, 06:40:50 UTC
6946ea0 Fix bug introduced in rev. 46806 by not having variable declaration at the top of a block. 09 June 2006, 22:45:54 UTC
22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. Closes bug #532646, again. Will be backported. 09 June 2006, 22:31:23 UTC
b2afe85 Make use of new str.startswith/endswith semantics. Occurences in email and compiler were ignored due to backwards compat requirements. 09 June 2006, 20:43:48 UTC
3ebef99 set eol-style svn property 09 June 2006, 20:01:01 UTC
2ad7bd5 set eol-style svn property 09 June 2006, 19:59:11 UTC
b3f2985 Add some wsgiref text 09 June 2006, 19:56:05 UTC
2007d4e Remove unused variable 09 June 2006, 19:43:25 UTC
e558486 Implementing a happy idea from Georg Brandl: make runtest() try to clean up files and directories the tests often leave behind by mistake. This is the first time in history I don't have a bogus "db_home" directory after running the tests ;-) Also worked on runtest's docstring, to say something about all the arguments, and to document the non-obvious return values. New functions runtest_inner() and cleanup_test_droppings() in support of the above. 09 June 2006, 19:24:44 UTC
a04d118 Describe startswith()/endswiith() change; add reminder about wsgiref 09 June 2006, 19:03:16 UTC
2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. 09 June 2006, 18:45:48 UTC
932f5af svn:ignore .pyc and .pyo files. 09 June 2006, 18:40:46 UTC
e7ec81f Test file.__exit__. 09 June 2006, 18:29:52 UTC
982c30b Whitespace normalization. 09 June 2006, 17:47:00 UTC
c48b0e6 Fix inconsistency in naming within an enum. 09 June 2006, 17:05:48 UTC
0873b11 Add note about wsgiref 09 June 2006, 16:46:51 UTC
3fed2eb Add note about XMLGenerator bugfix 09 June 2006, 16:44:40 UTC
5cf565d Import wsgiref into the stdlib, as of the external version 0.1-r2181. 09 June 2006, 16:40:18 UTC
dbeaa69 Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005. Make the definition #ARRAYSIZE conditional. VisualStudio .NET 2005 already has it defined using a better gimmick. 09 June 2006, 16:28:01 UTC
91c64a0 [Bug #1472827] Make saxutils.XMLGenerator handle \r\n\t in attribute values by escaping them properly. 2.4 bugfix candidate. 09 June 2006, 13:15:57 UTC
7dbb1ff Markup fix 09 June 2006, 10:22:35 UTC
c9778a8 Fix grammar and reflow 09 June 2006, 05:54:18 UTC
71dc0a0 Remove the temporary hack to force test_optparse to run immediately after test_file. At least 8 buildbot boxes passed since the underlying problem got fixed, and they all failed before the fix, so there's no point to this anymore. 09 June 2006, 05:12:40 UTC
0556e9b testUnicodeOpen(): I have no idea why, but making this test clean up after itself appears to fix the test failures when test_optparse follows test_file. test_main(): Get rid of TESTFN no matter what. That's also enough to fix the mystery failures. Doesn't hurt to fix them twice :-) 09 June 2006, 04:02:06 UTC
dbb82f6 AutoFileTests.tearDown(): Removed mysterious undocumented try/except. Remove TESTFN. Throughout: used open() instead of file(), and wrapped long lines. 09 June 2006, 03:51:41 UTC
2b63779 To boost morale :-), force test_optparse to run immediately after test_file until we can figure out how to fix it. (See python-dev; at the moment we don't even know which checkin caused the problem.) 09 June 2006, 03:09:42 UTC
back to top