Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #977553: speed up RegEnumKey call | Georg Brandl | 2006-02-18 | 1 | -19/+12 |
| | |||||
* | Remove unused variable | Neal Norwitz | 2006-02-18 | 1 | -1/+0 |
| | |||||
* | Patch #1426648: urllib proxy_bypass broken | Georg Brandl | 2006-02-18 | 1 | -3/+10 |
| | |||||
* | Patch #1415507: clarify docs on reference stealing | Georg Brandl | 2006-02-18 | 1 | -3/+13 |
| | |||||
* | Patch #1393157: os.startfile() now has an optional argument to specify | Georg Brandl | 2006-02-18 | 3 | -9/+28 |
| | | | | a "command verb" to invoke on the file. | ||||
* | Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, ↵ | Georg Brandl | 2006-02-18 | 1 | -42/+33 |
| | | | | offset>=0. | ||||
* | This should get test_timeout to pass when running on any python.org host. ↵ | Neal Norwitz | 2006-02-18 | 1 | -0/+5 |
| | | | | Will backport | ||||
* | Patch #1373643: The chunk module can now read chunks larger than | Georg Brandl | 2006-02-18 | 2 | -1/+4 |
| | | | | two gigabytes. | ||||
* | Fix intptr_t fallback for Py_ssize_t. | Martin v. Löwis | 2006-02-18 | 1 | -1/+1 |
| | |||||
* | Fix typo. | Martin v. Löwis | 2006-02-18 | 1 | -1/+1 |
| | |||||
* | Fix size computation on Win64. | Martin v. Löwis | 2006-02-18 | 1 | -12/+46 |
| | |||||
* | Suppress new deprecation warnings when running the | Tim Peters | 2006-02-18 | 4 | -1/+16 |
| | | | | | | | | | | | test suite. For urllib2, move the import of gopherlib into the only function that uses it: users (including the test suite) certainly shouldn't see a deprecation warning just because they import urllib2! If they actually use gopher_open(), fine, _then_ they should see a deprecation warning. | ||||
* | Changed the new deprecation warning to show the | Tim Peters | 2006-02-18 | 1 | -1/+2 |
| | | | | | code _importing_ gopherlib instead of gopherlib's call to warnings.warn. | ||||
* | Whitespace normalization. | Tim Peters | 2006-02-18 | 2 | -3/+0 |
| | |||||
* | Move test case for HTTP response dict to httplib. | Georg Brandl | 2006-02-17 | 2 | -5/+5 |
| | |||||
* | Move "httpresponses" dict from urllib2 to httplib where it belongs. | Georg Brandl | 2006-02-17 | 5 | -68/+69 |
| | |||||
* | Remove size constraints in SLICE opcodes. | Martin v. Löwis | 2006-02-17 | 2 | -19/+14 |
| | |||||
* | Make ssize_t-clean. | Martin v. Löwis | 2006-02-17 | 1 | -38/+40 |
| | |||||
* | Add NEWS entry to previous checkin. | Georg Brandl | 2006-02-17 | 1 | -0/+2 |
| | |||||
* | Patch #1417555: SimpleHTTPServer now returns Last-Modified headers. | Georg Brandl | 2006-02-17 | 4 | -8/+21 |
| | |||||
* | Update "undocumented modules" section. | Georg Brandl | 2006-02-17 | 1 | -8/+10 |
| | |||||
* | Add deprecation warning to modules deprecated since 2000. | Georg Brandl | 2006-02-17 | 2 | -0/+8 |
| | |||||
* | Add deprecation notices to modules deprecated since 2000. | Georg Brandl | 2006-02-17 | 2 | -1/+6 |
| | |||||
* | Fix typo. | Thomas Wouters | 2006-02-17 | 1 | -1/+1 |
| | |||||
* | Bug #1430298: It is now possible to send a mail with an empty | Georg Brandl | 2006-02-17 | 2 | -1/+7 |
| | | | | return address using smtplib. | ||||
* | Add bug number to NEWS entry. | Georg Brandl | 2006-02-17 | 1 | -1/+2 |
| | |||||
* | The names of lambda functions are now properly displayed in pydoc. | Georg Brandl | 2006-02-17 | 2 | -1/+3 |
| | |||||
* | Bug #1432350: arrayobject should use PyObject_VAR_HEAD | Georg Brandl | 2006-02-17 | 2 | -3/+2 |
| | |||||
* | Patch #1432345: Make python compile on DragonFly. | Martin v. Löwis | 2006-02-17 | 3 | -9/+13 |
| | |||||
* | Remove size restrictions. | Martin v. Löwis | 2006-02-17 | 1 | -29/+19 |
| | |||||
* | mmap_flush_method(): Squash compiler warning about | Tim Peters | 2006-02-17 | 1 | -2/+2 |
| | | | | mixing signed and unsigned types in comparison. | ||||
* | Remove space between function name and left paren | Tim Peters | 2006-02-17 | 1 | -94/+92 |
| | | | | in function calls. | ||||
* | Removed pointless parens around `return` expressions; | Tim Peters | 2006-02-16 | 1 | -22/+20 |
| | | | | deleted some curlies around one-line blocks. | ||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-02-16 | 1 | -41/+41 |
| | |||||
* | new_mmap_object(), Windows flavor. | Tim Peters | 2006-02-16 | 1 | -2/+16 |
| | | | | | | | | | | | | | | On a box where sizeof(size_t) == 4, C doesn't define what happens when a size_t value is shifted right by 32 bits, and this caused test_mmap to fail on Windows in a debug build. So use different code to break the size apart depending on how large size_t actually is. This looks like an illusion, since lots of code in this module still appears to assume sizes can't be more than 32 bits (e.g., the internal _GetMapSize() still returns an int), but at least test_mmap passes again. | ||||
* | More Py_ssize_t format characters. | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
| | |||||
* | struct_pack(): Repair new assert-fail crash in | Tim Peters | 2006-02-16 | 1 | -1/+1 |
| | | | | | debug-build test_struct on a box where plain "char" is signed. | ||||
* | Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
| | | | | | buffer_new(). Probably fixes a bug in 'buffer("", 10, 10)' on platforms where sizeof(Py_ssize_t) != sizeof(long) (Win64?) | ||||
* | Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
| | | | | | | | | | | | Fixes: >>> u"".center(10) Traceback (most recent call last): File "<stdin>", line 1, in <module> MemoryError on 64-bit systems. | ||||
* | Also make _heapq.nlargest() use Py_ssize_t instead of ints, to iter over | Thomas Wouters | 2006-02-16 | 1 | -2/+2 |
| | | | | | lists and call Py_ssize_t-using helpers. All other code in this module was already adapted to Py_ssize_t. | ||||
* | Use 'n' format for Py_ssize_t variables to PyArg_ParseTuple(). Py_ssize_t | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
| | | | | | | | has been applied fairly arbitrarily in this module (nsmallest uses Py_ssize_t, nlargest does not) and it probably deserves a more complete review. Fixes heapq.nsmallest() always returning the empty list (on platforms with 64-bit ssize_t/long) | ||||
* | Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple(). | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
| | |||||
* | Use Py_ssize_t in helper function between Py_ssize_t-using functions. | Thomas Wouters | 2006-02-16 | 1 | -2/+2 |
| | |||||
* | Add encoding-test datafiles to svn:ignore: | Thomas Wouters | 2006-02-16 | 0 | -0/+0 |
| | | | | | | | | | | | | | | | | | EUC-CN.TXT CP936.TXT BIG5HKSCS.TXT CP932.TXT EUC-JP.TXT SHIFTJIS.TXT EUC-JISX0213.TXT SHIFT_JISX0213.TXT CP949.TXT EUC-KR.TXT JOHAB.TXT BIG5.TXT CP950.TXT NormalizationTest-3.2.0.txt | ||||
* | Drop vsextcomp_verbose | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
| | |||||
* | Fix broken example of csv.reader use (it returns an iterator, which isn't | Thomas Wouters | 2006-02-16 | 1 | -1/+2 |
| | | | | | | indexable) by using the same 'for' construct as all other examples. (Also emphasizes that reading from a random iterable is no different than reading from a file.) | ||||
* | Change _PyObject_GC_Resize to expect Py_ssize_t. | Martin v. Löwis | 2006-02-16 | 2 | -2/+2 |
| | |||||
* | Fix typo | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
| | |||||
* | Move cast to suppress warning. | Martin v. Löwis | 2006-02-16 | 1 | -2/+2 |
| | |||||
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 7 | -22/+24 |
| |