Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Support 2.4 (released versions) better. (rsync was not working with adding ↵ | Neal Norwitz | 2006-02-14 | 1 | -2/+4 |
| | | | | the *. Only some files/dirs were copied, not everything.) | ||||
* | Patch #428494: Prefer linking against ncursesw over ncurses library | Martin v. Löwis | 2006-02-11 | 1 | -0/+2 |
| | |||||
* | Update general copyright years to 2006. | Georg Brandl | 2006-02-11 | 1 | -1/+1 |
| | |||||
* | Be a little less sensitive to failures. Only check for the result from | Neal Norwitz | 2006-02-09 | 1 | -1/+1 |
| | | | | | | regrtest.py. If we grep for just "fail", that finds bsddb deadlock messages, which presumably are just warnings. They don't cause a test failure. | ||||
* | Added the cProfile module. | Armin Rigo | 2006-02-08 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | Based on lsprof (patch #1212837) by Brett Rosen and Ted Czotter. With further editing by Michael Hudson and myself. History in svn repo: http://codespeak.net/svn/user/arigo/hack/misc/lsprof * Module/_lsprof.c is the internal C module, Lib/cProfile.py a wrapper. * pstats.py updated to display cProfile's caller/callee timings if available. * setup.py and NEWS updated. * documentation updates in the profiler section: - explain the differences between the three profilers that we have now - profile and cProfile can use a unified documentation, like (c)Pickle - mention that hotshot is "for specialized usage" now - removed references to the "old profiler" that no longer exists * test updates: - extended test_profile to cover delicate cases like recursion - added tests for the caller/callee displays - added test_cProfile, performing the same tests for cProfile * TO-DO: - cProfile gives a nicer name to built-in, particularly built-in methods, which could be backported to profile. - not tested on Windows recently! | ||||
* | Bug #876637, prevent stack corruption when socket descriptor | Neal Norwitz | 2006-02-07 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | is larger than FD_SETSIZE. This can only be acheived with ulimit -n SOME_NUMBER_BIGGER_THAN_FD_SETSIZE which is typically only available to root. Since this wouldn't normally be run in a test (ie, run as root), it doesn't seem too worthwhile to add a normal test. The bug report has one version of a test. I've written another. Not sure what the best thing to do is. Do the check before calling internal_select() because we can't set an error in between Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS. This seemed the clearest solution, ie handle before calling internal_select() rather than inside. Plus there is at least one place outside of internal_select() that needed to be handled. Will backport. | ||||
* | Patch #1412872: zipfile: use correct system type on unixy systems. | Martin v. Löwis | 2006-02-05 | 1 | -0/+3 |
| | |||||
* | Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same | Neal Norwitz | 2006-02-05 | 1 | -0/+4 |
| | | | | | | | | | | | on both Unix (SVR4 and BSD) and Windows. Restores behaviour of passing -1 for anonymous memory on Unix. Use MAP_ANONYMOUS instead of _ANON since the latter is deprecated according to Linux (gentoo) man pages. Should we continue to allow mmap.mmap(0, length) to work on Windows? 0 is a valid fd. Will backport bugfix portions. | ||||
* | Patch #1422385: Changes to nis module to support multiple NIS domains | Martin v. Löwis | 2006-02-04 | 2 | -0/+4 |
| | |||||
* | Drop C library for stat/fstat on Windows. | Martin v. Löwis | 2006-02-03 | 1 | -0/+4 |
| | |||||
* | Patch #1413711: Certain patterns of differences were making difflib | Gustavo Niemeyer | 2006-01-31 | 1 | -0/+3 |
| | | | | | touch the recursion limit. The applied patch inlines the recursive __helper method in a non-recursive way. | ||||
* | Fix typo. | Martin v. Löwis | 2006-01-30 | 1 | -1/+1 |
| | |||||
* | add bsddb.db.DBEnv.set_tx_timestamp mention | Gregory P. Smith | 2006-01-29 | 1 | -0/+2 |
| | |||||
* | Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. | Neal Norwitz | 2006-01-25 | 1 | -0/+3 |
| | | | | Will backport. | ||||
* | note the bsddb extension module changes. | Gregory P. Smith | 2006-01-24 | 1 | -1/+6 |
| | |||||
* | Patch #1349118: urllib2 now supports user:pass@ style proxy | Martin v. Löwis | 2006-01-24 | 2 | -0/+5 |
| | | | | | specifications, raises IOErrors when proxies for unsupported protocols are defined, and uses the https proxy on https redirections. | ||||
* | Bug #902075: urllib2 now handles "host:port" proxy specifications | Georg Brandl | 2006-01-21 | 1 | -1/+3 |
| | | | | Can/should this be backported? | ||||
* | Bug #1407902: Added support for sftp:// URIs to urlparse. | Georg Brandl | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | Bug #1402224: Add warning to dl docs about crashes. | Georg Brandl | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | Bug #1396471: Document that Windows' ftell() can return invalid | Georg Brandl | 2006-01-20 | 1 | -0/+3 |
| | | | | values for text files with UNIX-style line endings. | ||||
* | Bug #1371247: Update Windows LCIDs in locale.py. | Georg Brandl | 2006-01-20 | 1 | -2/+4 |
| | |||||
* | refresh every 12 hours for crazy people like me that keep the page up | Neal Norwitz | 2006-01-16 | 1 | -1/+5 |
| | |||||
* | Alphabetize some names and remove a dupe | Neal Norwitz | 2006-01-14 | 1 | -16/+15 |
| | |||||
* | Patch #1103116: AF_NETLINK sockets basic support. | Martin v. Löwis | 2006-01-14 | 2 | -0/+3 |
| | |||||
* | Fix typo | Neal Norwitz | 2006-01-14 | 1 | -1/+1 |
| | |||||
* | Bug #1394565: SimpleHTTPServer now doesn't choke on query paramters | Georg Brandl | 2006-01-13 | 1 | -0/+3 |
| | | | | any more. | ||||
* | Bug #1403410: The warnings module now doesn't get confused | Georg Brandl | 2006-01-13 | 1 | -0/+3 |
| | | | | when it can't find out the module name it generates a warning for. | ||||
* | Fix SF bug #1402308, segfault when using mmap(-1, ...) | Neal Norwitz | 2006-01-11 | 2 | -0/+3 |
| | | | | | | | This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows. Will backport. | ||||
* | SF bug #1400822, Extended version of _curses over{lay,write} does not work | Neal Norwitz | 2006-01-10 | 2 | -0/+5 |
| | | | | | | Fix signatures to conform to doc (also fixed ungetmouse()). Will backport. | ||||
* | - Patch #1400181, fix unicode string formatting to not use the locale. | Neal Norwitz | 2006-01-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | This is how string objects work. u'%f' could use , instead of . for the decimal point. Now both strings and unicode always use periods. This is the code that would break: import locale locale.setlocale(locale.LC_NUMERIC, 'de_DE') u'%.1f' % 1.0 assert '1.0' == u'%.1f' % 1.0 I couldn't create a test case which fails, but this fixes the problem. Will backport. | ||||
* | Add some notes about a recurring problem with OpenBSD | Neal Norwitz | 2006-01-09 | 1 | -0/+38 |
| | |||||
* | Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8. | Neal Norwitz | 2006-01-09 | 1 | -0/+3 |
| | | | | | | configure would break checking curses.h. Will backport. | ||||
* | Bug #1400115, Fix segfault when calling curses.panel.userptr() | Neal Norwitz | 2006-01-09 | 1 | -0/+3 |
| | | | | | | without prior setting of the userptr. Will backport. | ||||
* | Add myself. | Georg Brandl | 2006-01-08 | 1 | -0/+1 |
| | |||||
* | Patch #1177307: UTF-8-Sig codec. | Martin v. Löwis | 2006-01-08 | 1 | -1/+2 |
| | |||||
* | Patch #881820: look for openpty and forkpty also in libbsd. | Martin v. Löwis | 2006-01-08 | 1 | -0/+2 |
| | | | | Will backport. | ||||
* | Fix errors on 64-bit platforms. Will backport | Neal Norwitz | 2006-01-05 | 1 | -0/+2 |
| | |||||
* | Mention that zlib is now builtin on Windows. | Martin v. Löwis | 2006-01-03 | 1 | -0/+3 |
| | |||||
* | Dammit, who the hell spells build with ii? | Neal Norwitz | 2006-01-03 | 1 | -1/+1 |
| | | | | Thanks to Tony Meyer for spotting my boo-boo. | ||||
* | install svn in /usr/local/bin and remove from ~/local/bin | Neal Norwitz | 2006-01-03 | 1 | -3/+1 |
| | |||||
* | get the proper full pathname of the script. spell build properly | Neal Norwitz | 2006-01-02 | 1 | -3/+3 |
| | |||||
* | * Change tabs to spaces | Neal Norwitz | 2006-01-02 | 1 | -8/+8 |
| | | | | | * Enable network tests when hunting for leaks * Disable curses and audio tests properly when running -u all | ||||
* | Script to automatically build and test python and doc. The results | Neal Norwitz | 2006-01-02 | 1 | -0/+192 |
| | | | | | | are copied up to docs.python.org/dev Needs lots more work. Feel free to add code, fixes, or FIXME comments. | ||||
* | Ported from 2.4 branch: | Barry Warsaw | 2006-01-01 | 1 | -2/+5 |
| | | | | Patch by Ori Avtalion to fix a minor display glitch in the RightArrow. | ||||
* | Use -xcode=pic32 for SunPro. Will backport to 2.4. | Martin v. Löwis | 2005-12-30 | 1 | -0/+2 |
| | |||||
* | [ 959576 ] Can't build Python on POSIX w/o $HOME | Georg Brandl | 2005-12-27 | 1 | -0/+3 |
| | |||||
* | Patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape mode | Neal Norwitz | 2005-12-23 | 1 | -0/+2 |
| | |||||
* | Patch #1117398: fix cookielib LoadError | Neal Norwitz | 2005-12-23 | 1 | -0/+4 |
| | |||||
* | Bug #1072182, fix some potential problems if characters are signed. | Neal Norwitz | 2005-12-19 | 1 | -0/+2 |
| | |||||
* | Bug #889500, fix line number on SyntaxWarning for global declarations. | Neal Norwitz | 2005-12-19 | 1 | -0/+2 |
| |