Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1349118: urllib2 now supports user:pass@ style proxy | Martin v. Löwis | 2006-01-24 | 1 | -0/+4 |
| | | | | | 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 |
| | |||||
* | Patch #1103116: AF_NETLINK sockets basic support. | Martin v. Löwis | 2006-01-14 | 1 | -0/+2 |
| | |||||
* | 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 | 1 | -0/+2 |
| | | | | | | | 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 | 1 | -0/+4 |
| | | | | | | 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. | ||||
* | 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. | ||||
* | 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 |
| | |||||
* | 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 |
| | |||||
* | Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. | Neal Norwitz | 2005-12-18 | 1 | -0/+2 |
| | | | | Needs backport. | ||||
* | Get float() to be more portable across platforms. Disable hex strings. | Neal Norwitz | 2005-12-18 | 1 | -0/+3 |
| | |||||
* | SF Patch #1365916, mmap fails on AMD64 | Neal Norwitz | 2005-12-18 | 1 | -0/+2 |
| | | | | Fix some 64-bit issues due to mismatch format characters w/actual data types | ||||
* | Expose Subversion revision number (calculated via "svnversion .") to Python. | Barry Warsaw | 2005-12-18 | 1 | -0/+4 |
| | | | | | | | Add C API function Py_GetBuildNumber(), add it to the interactive prompt banner (i.e. Py_GetBuildInfo()), and add it as the sys.build_number attribute. The build number is a string instead of an int because it may contain a trailing 'M' if there are local modifications. | ||||
* | Doc for PEP 341, needs improvement | Neal Norwitz | 2005-12-17 | 1 | -1/+1 |
| | |||||
* | Fix leftover word. | Georg Brandl | 2005-12-17 | 1 | -1/+1 |
| | |||||
* | Added PEP 341 to NEWS. | Georg Brandl | 2005-12-17 | 1 | -0/+4 |
| | | | | | We still need a change in the reference manual to reflect the new try statement. | ||||
* | Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' | Hye-Shik Chang | 2005-12-17 | 1 | -0/+3 |
| | | | | just like string codecs. | ||||
* | More text about the pragmatic significance of hashlib. | Tim Peters | 2005-12-16 | 1 | -4/+13 |
| | |||||
* | Add the missing mention of the hashlib module. | Brett Cannon | 2005-12-16 | 1 | -0/+3 |
| | |||||
* | Revert r41662 and the part of 41552 that originally caused the problem | Neal Norwitz | 2005-12-15 | 1 | -3/+0 |
| | | | | | (calling ftell(stdin) doesn't seem defined). So we won't test errors from ftell unless we can do it portably. | ||||
* | Add a workaround for file.ftell() to raise IOError for ttys. | Hye-Shik Chang | 2005-12-13 | 1 | -0/+3 |
| | | | | | ftell(3) on BSD doesn't set errno even for ttys and returns useless values. | ||||
* | r1068@spiff: Fredrik | 2005-12-12 19:50:30 +0100 | Fredrik Lundh | 2005-12-12 | 1 | -0/+4 |
| | | | | assorted xml.etree tweaks | ||||
* | Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn module | Hye-Shik Chang | 2005-12-12 | 1 | -0/+3 |
| | | | | build problem on AIX. | ||||
* | Patch #1276356: Implement new resource "urlfetch" for regrtest. | Hye-Shik Chang | 2005-12-10 | 1 | -0/+3 |
| | | | | | This enables even impatient people to run tests that require remote files such as test_normalization and test_codecmaps_*. | ||||
* | [Patch #1039083] Add 'encoding' parameter to SimpleXMLRPCServer | Andrew M. Kuchling | 2005-12-04 | 1 | -1/+1 |
| | |||||
* | [Patch #893642] Add optional allow_none argument to SimpleXMLRPCServer, ↵ | Andrew M. Kuchling | 2005-12-04 | 1 | -0/+3 |
| | | | | CGIXMLRPCRequestHandler | ||||
* | [Bug #792570] Under Windows, socket.read() seems to run into trouble when | Andrew M. Kuchling | 2005-12-04 | 1 | -0/+3 |
| | | | | | | | | | | asked to read tens of megabytes of data. On my Mac, it hits MemoryErrors when reading around 15Mb in one chunk. The fix is to read the body in several parts, not as one big piece. It would be nice to fix the underlying socket.read() problem, too. 2.4 bugfix candidate. | ||||
* | [Bug #1222790] Set reuse-address and close-on-exec flags on the HTTP ↵ | Andrew M. Kuchling | 2005-12-04 | 1 | -0/+3 |
| | | | | listening socket | ||||
* | Patch #1350409: Port signal handling to VS 2005. | Martin v. Löwis | 2005-11-28 | 1 | -0/+2 |
| | |||||
* | Patch #1162825: Support non-ASCII characters in IDLE window titles. | Martin v. Löwis | 2005-11-27 | 1 | -0/+2 |
| | |||||
* | bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵ | Georg Brandl | 2005-11-26 | 1 | -0/+2 |
| | | | | cannot be assigned attributes on the fly. | ||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -0/+3 |
| | |||||
* | Prevent threading.Thread.join() from blocking when a previous call raised an | Brett Cannon | 2005-11-23 | 1 | -0/+4 |
| | | | | | | exception (e.g., passing in an illegal argument). Applies patch #1314396. Thanks Eric Blossom. |