summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2006-02-203-5/+5
|
* Bug #947571: By default, urllib.urlopen() does not raise IOErrorsGeorg Brandl2006-02-201-1/+8
| | | | on server error codes. Make this clear.
* Bug #1210377: close bsddb cursor correctly after NotFoundError.Georg Brandl2006-02-201-1/+4
|
* Based on discussion with Martin and Thomas on python-checkinsNeal Norwitz2006-02-201-1/+1
| | | | add a Py_SAFE_DOWNCAST() to make the code correct.
* Patch #931938: prevent setting sys.prefix to ""Georg Brandl2006-02-201-0/+6
|
* Bug #1102649: add a note to pickle docs that pickle files should beGeorg Brandl2006-02-201-1/+10
| | | | opened in binary mode.
* Bug #1013800: document PyFunction_* functionsGeorg Brandl2006-02-202-11/+112
|
* Detect Win64 builds.Martin v. Löwis2006-02-201-10/+39
|
* Bug #1323369: document possible values of sys.getwindowsversion()Georg Brandl2006-02-201-4/+4
| | | | platform field
* Let the SDK setup override distutils logic.Martin v. Löwis2006-02-201-15/+25
|
* Bug #1101233: fix test_fcntl on netbsd2 platform.Georg Brandl2006-02-201-1/+1
|
* bug #872175: add --with-fpectl to READMEGeorg Brandl2006-02-201-0/+5
|
* Bug #854823: socketmodule now builds on Sun platforms even whenGeorg Brandl2006-02-202-2/+5
| | | | INET_ADDRSTRLEN is not defined.
* Bug #1413790: zipfile now sanitizes absolute archive names that areGeorg Brandl2006-02-204-5/+26
| | | | not allowed by the specs.
* Whitespace normalization.Tim Peters2006-02-191-2/+2
|
* Repair new test failures on Windows due toTim Peters2006-02-191-4/+4
| | | | | implicit assumptions that there's no difference between text and binary modes.
* Fix typpo.Thomas Wouters2006-02-191-1/+1
|
* Fix compiler warning on amd64. We can't use zd here since this isNeal Norwitz2006-02-191-2/+2
| | | | ultimately going to snprintf() not the python string formatter. Right?
* Fix compiler warning (int vs Py_ssize_t mismatchNeal Norwitz2006-02-191-1/+1
|
* Minor tweaksNeal Norwitz2006-02-191-1/+4
|
* Generators have been permanent for a while. This comment is no longer ↵Neal Norwitz2006-02-191-6/+1
| | | | applicable.
* Ignore the tests which report leaks sporadically.Neal Norwitz2006-02-191-3/+8
| | | | | | | | This should cause few enough spurious warnings to send to python-checkins now. If a test leaks that is not in the ignore list (LEAKY_TESTS), all tests which leak will be reported. This includes those in the ignore list. Hopefully that will prompt someone to fix the flakiness.
* Fix a build problem introduced by r42230.Hye-Shik Chang2006-02-191-1/+1
|
* Remove two instances of trailing commas. Resolves patch #1209781.Georg Brandl2006-02-192-2/+2
|
* Fix the encodings package codec search function to only searchMarc-André Lemburg2006-02-193-3/+20
| | | | | | inside its own package. Fixes problem reported in patch #1433198. Add codec search function for codec test codec.
* Clarify how hook_compressed determines how to open a file.Georg Brandl2006-02-191-2/+3
|
* 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
|