summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Bug #902075: urllib2 now handles "host:port" proxy specificationsGeorg Brandl2006-01-211-1/+3
| | | | Can/should this be backported?
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-201-0/+2
|
* Bug #1402224: Add warning to dl docs about crashes.Georg Brandl2006-01-201-0/+2
|
* Bug #1396471: Document that Windows' ftell() can return invalidGeorg Brandl2006-01-201-0/+3
| | | | values for text files with UNIX-style line endings.
* Bug #1371247: Update Windows LCIDs in locale.py.Georg Brandl2006-01-201-2/+4
|
* refresh every 12 hours for crazy people like me that keep the page upNeal Norwitz2006-01-161-1/+5
|
* Alphabetize some names and remove a dupeNeal Norwitz2006-01-141-16/+15
|
* Patch #1103116: AF_NETLINK sockets basic support.Martin v. Löwis2006-01-142-0/+3
|
* Fix typoNeal Norwitz2006-01-141-1/+1
|
* Bug #1394565: SimpleHTTPServer now doesn't choke on query paramtersGeorg Brandl2006-01-131-0/+3
| | | | any more.
* Bug #1403410: The warnings module now doesn't get confusedGeorg Brandl2006-01-131-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 Norwitz2006-01-112-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 workNeal Norwitz2006-01-102-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 Norwitz2006-01-101-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 OpenBSDNeal Norwitz2006-01-091-0/+38
|
* Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8.Neal Norwitz2006-01-091-0/+3
| | | | | | configure would break checking curses.h. Will backport.
* Bug #1400115, Fix segfault when calling curses.panel.userptr()Neal Norwitz2006-01-091-0/+3
| | | | | | without prior setting of the userptr. Will backport.
* Add myself.Georg Brandl2006-01-081-0/+1
|
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-081-1/+2
|
* Patch #881820: look for openpty and forkpty also in libbsd.Martin v. Löwis2006-01-081-0/+2
| | | | Will backport.
* Fix errors on 64-bit platforms. Will backportNeal Norwitz2006-01-051-0/+2
|
* Mention that zlib is now builtin on Windows.Martin v. Löwis2006-01-031-0/+3
|
* Dammit, who the hell spells build with ii?Neal Norwitz2006-01-031-1/+1
| | | | Thanks to Tony Meyer for spotting my boo-boo.
* install svn in /usr/local/bin and remove from ~/local/binNeal Norwitz2006-01-031-3/+1
|
* get the proper full pathname of the script. spell build properlyNeal Norwitz2006-01-021-3/+3
|
* * Change tabs to spacesNeal Norwitz2006-01-021-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 resultsNeal Norwitz2006-01-021-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 Warsaw2006-01-011-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öwis2005-12-301-0/+2
|
* [ 959576 ] Can't build Python on POSIX w/o $HOMEGeorg Brandl2005-12-271-0/+3
|
* Patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape modeNeal Norwitz2005-12-231-0/+2
|
* Patch #1117398: fix cookielib LoadErrorNeal Norwitz2005-12-231-0/+4
|
* Bug #1072182, fix some potential problems if characters are signed.Neal Norwitz2005-12-191-0/+2
|
* Bug #889500, fix line number on SyntaxWarning for global declarations.Neal Norwitz2005-12-191-0/+2
|
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-0/+2
| | | | Needs backport.
* Get float() to be more portable across platforms. Disable hex strings.Neal Norwitz2005-12-181-0/+3
|
* SF Patch #1365916, mmap fails on AMD64Neal Norwitz2005-12-181-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 Warsaw2005-12-181-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 improvementNeal Norwitz2005-12-171-1/+1
|
* Fix leftover word.Georg Brandl2005-12-171-1/+1
|
* Added PEP 341 to NEWS.Georg Brandl2005-12-171-0/+4
| | | | | We still need a change in the reference manual to reflect the new try statement.
* SF patch #1355913, PEP 341 - Unification of try/except and try/finallyNeal Norwitz2005-12-171-0/+1
| | | | Modified since ast-arenas was implemented.
* Add Michael Urman for work on SF patch #1365916Neal Norwitz2005-12-171-0/+1
|
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-0/+3
| | | | just like string codecs.
* More text about the pragmatic significance of hashlib.Tim Peters2005-12-161-4/+13
|
* Add the missing mention of the hashlib module.Brett Cannon2005-12-161-0/+3
|
* Revert r41662 and the part of 41552 that originally caused the problemNeal Norwitz2005-12-151-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 Chang2005-12-131-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 +0100Fredrik Lundh2005-12-121-0/+4
| | | | assorted xml.etree tweaks
* Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn moduleHye-Shik Chang2005-12-121-0/+3
| | | | build problem on AIX.