summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1215184: FileInput now can be given an opening hook which canGeorg Brandl2006-02-194-12/+105
| | | | be used to control how files are opened.
* Patch #1212287: fileinput.input() now has a mode parameter forGeorg Brandl2006-02-194-15/+51
| | | | specifying the file mode input files should be opened with.
* Patch #1215184: fileinput now has a fileno() function for getting theGeorg Brandl2006-02-194-7/+51
| | | | current file number.
* Patch #1349274: gettext.install() now optionally installs additionalGeorg Brandl2006-02-194-5/+41
| | | | translation functions other than _() in the builtin namespace.
* Patch #1337756: fileinput now accepts Unicode filenames.Georg Brandl2006-02-193-1/+13
|
* Patch #1352711: make zipimport raise a complete IOErrorGeorg Brandl2006-02-191-2/+1
|
* test_gopher(): Squash another deprecationTim Peters2006-02-191-0/+5
| | | | warning about gopherlib.
* PyEnumKey(): Stop including the trailing NUL byteTim Peters2006-02-191-5/+4
| | | | | in the returned string (logic error introduced by recent patch).
* PyEnumKey(): Remove unused local.Tim Peters2006-02-191-1/+0
|
* Add a unit test for bug fix #1396678.Georg Brandl2006-02-192-6/+11
|
* Bug #1396678: a closed bsddb.DB raises AttributeError on repr().Georg Brandl2006-02-191-1/+4
| | | | It now returns "{}". Is that the correct solution?
* This fixes test _locale failing on macteagle (Mac OS 10.4 AFAIK).Neal Norwitz2006-02-191-3/+5
| | | | | | | | | Google for: eu_ES decimal point shows that BSD locales had the eu_ES decimal point as a single quote (') instead of a comma (,). This was seems to have been fixed 15 months ago, but it's not on our Mac and presumably others. So skip this broken locale.
* Bug #801349: document that start/stop/step slice arguments can be NoneGeorg Brandl2006-02-192-6/+7
|
* Add sizeof() instead of hardcoding variable lengthGeorg Brandl2006-02-181-1/+1
|
* Patch #977553: speed up RegEnumKey callGeorg Brandl2006-02-181-19/+12
|
* Remove unused variableNeal Norwitz2006-02-181-1/+0
|
* Patch #1426648: urllib proxy_bypass brokenGeorg Brandl2006-02-181-3/+10
|
* Patch #1415507: clarify docs on reference stealingGeorg Brandl2006-02-181-3/+13
|
* Patch #1393157: os.startfile() now has an optional argument to specifyGeorg Brandl2006-02-183-9/+28
| | | | a "command verb" to invoke on the file.
* Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, ↵Georg Brandl2006-02-181-42/+33
| | | | offset>=0.
* This should get test_timeout to pass when running on any python.org host. ↵Neal Norwitz2006-02-181-0/+5
| | | | Will backport
* Patch #1373643: The chunk module can now read chunks larger thanGeorg Brandl2006-02-182-1/+4
| | | | two gigabytes.
* Fix intptr_t fallback for Py_ssize_t.Martin v. Löwis2006-02-181-1/+1
|
* Fix typo.Martin v. Löwis2006-02-181-1/+1
|
* Fix size computation on Win64.Martin v. Löwis2006-02-181-12/+46
|
* Suppress new deprecation warnings when running theTim Peters2006-02-184-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 theTim Peters2006-02-181-1/+2
| | | | | code _importing_ gopherlib instead of gopherlib's call to warnings.warn.
* Whitespace normalization.Tim Peters2006-02-182-3/+0
|
* Move test case for HTTP response dict to httplib.Georg Brandl2006-02-172-5/+5
|
* Move "httpresponses" dict from urllib2 to httplib where it belongs.Georg Brandl2006-02-175-68/+69
|
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-172-19/+14
|
* Make ssize_t-clean.Martin v. Löwis2006-02-171-38/+40
|
* Add NEWS entry to previous checkin.Georg Brandl2006-02-171-0/+2
|
* Patch #1417555: SimpleHTTPServer now returns Last-Modified headers.Georg Brandl2006-02-174-8/+21
|
* Update "undocumented modules" section.Georg Brandl2006-02-171-8/+10
|
* Add deprecation warning to modules deprecated since 2000.Georg Brandl2006-02-172-0/+8
|
* Add deprecation notices to modules deprecated since 2000.Georg Brandl2006-02-172-1/+6
|
* Fix typo.Thomas Wouters2006-02-171-1/+1
|
* Bug #1430298: It is now possible to send a mail with an emptyGeorg Brandl2006-02-172-1/+7
| | | | return address using smtplib.
* Add bug number to NEWS entry.Georg Brandl2006-02-171-1/+2
|
* The names of lambda functions are now properly displayed in pydoc.Georg Brandl2006-02-172-1/+3
|
* Bug #1432350: arrayobject should use PyObject_VAR_HEADGeorg Brandl2006-02-172-3/+2
|
* Patch #1432345: Make python compile on DragonFly.Martin v. Löwis2006-02-173-9/+13
|
* Remove size restrictions.Martin v. Löwis2006-02-171-29/+19
|
* mmap_flush_method(): Squash compiler warning aboutTim Peters2006-02-171-2/+2
| | | | mixing signed and unsigned types in comparison.
* Remove space between function name and left parenTim Peters2006-02-171-94/+92
| | | | in function calls.
* Removed pointless parens around `return` expressions;Tim Peters2006-02-161-22/+20
| | | | deleted some curlies around one-line blocks.
* Trimmed trailing whitespace.Tim Peters2006-02-161-41/+41
|
* new_mmap_object(), Windows flavor.Tim Peters2006-02-161-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 Wouters2006-02-161-1/+1
|