summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add missing wordAndrew M. Kuchling2006-07-271-1/+2
|
* Typo fix ('publically' is rare, poss. non-standard)Andrew M. Kuchling2006-07-271-1/+1
|
* Remove code that is no longer used (ctypes.com).Thomas Heller2006-07-271-38/+7
| | | | | | | | | Fix the DllGetClassObject and DllCanUnloadNow so that they forward the call to the comtypes.server.inprocserver module. The latter was never documented, never used by published code, and didn't work anyway, so I think it does not deserve a NEWS entry (but I might be wrong).
* Add exampleAndrew M. Kuchling2006-07-271-0/+37
|
* Make uuid test suite pass on this box by requesting output with LC_ALL=C.Georg Brandl2006-07-272-3/+10
|
* Amend news entry.Georg Brandl2006-07-271-2/+3
|
* Whitespace normalization.Tim Peters2006-07-272-2/+1
|
* News for patch #1529686.Tim Peters2006-07-271-0/+3
|
* Add test_main() methods. These three tests were never runGeorg Brandl2006-07-273-6/+17
| | | | | | by regrtest.py. We really need a simpler testing framework.
* Reformat docstring; fix typoAndrew M. Kuchling2006-07-271-1/+2
|
* Bump distutils version to 2.5, as several new featuresMartin v. Löwis2006-07-272-1/+3
| | | | have been introduced since 2.4.
* No functional change. Add comment and assert to describe why there cannot ↵Neal Norwitz2006-07-271-2/+9
| | | | be overflow which was reported by Klocwork. Discussed on python-dev
* Closure can't be NULL at this point since we know it's a tuple.Neal Norwitz2006-07-271-1/+1
| | | | Reported by Klocwork # 74.
* Don't kill a normal instance of python running on windows when checkingNeal Norwitz2006-07-271-1/+12
| | | | | | to kill a cygwin instance. build\\python.exe was matching a normal windows instance. Prefix that with a \\ to ensure build is a directory and not PCbuild. As discussed on python-dev.
* Bug #1521947: possible bug in mystrtol.c with recent gcc.Tim Peters2006-07-272-11/+28
| | | | | | | | | | | | | | | | | | | | | In general, C doesn't define anything about what happens when an operation on a signed integral type overflows, and PyOS_strtol() did several formally undefined things of that nature on signed longs. Some version of gcc apparently tries to exploit that now, and PyOS_strtol() could fail to detect overflow then. Tried to repair all that, although it seems at least as likely to me that we'll get screwed by bad platform definitions for LONG_MIN and/or LONG_MAX now. For that reason, I don't recommend backporting this. Note that I have no box on which this makes a lick of difference -- can't really test it, except to note that it didn't break anything on my boxes. Silent change: PyOS_strtol() used to return the hard-coded 0x7fffffff in case of overflow. Now it returns LONG_MAX. They're the same only on 32-bit boxes (although C doesn't guarantee that either ...).
* Whitespace normalization.Tim Peters2006-07-262-2/+2
|
* Allow the 'onerror' argument to walk_packages() to catch any Exception, notPhillip J. Eby2006-07-261-5/+15
| | | | | just ImportError. This allows documentation tools to better skip unimportable packages.
* Use sys.exc_info()Andrew M. Kuchling2006-07-261-1/+2
|
* Use sys.exc_info()Andrew M. Kuchling2006-07-261-1/+1
|
* Put news item in right sectionAndrew M. Kuchling2006-07-261-3/+3
|
* Minor grammar fixAndrew M. Kuchling2006-07-261-1/+1
|
* Correct error messageAndrew M. Kuchling2006-07-261-1/+1
|
* [Bug #1471938] Fix build problem on Solaris 8 by conditionalizing the use of ↵Andrew M. Kuchling2006-07-262-2/+8
| | | | mvwgetnstr(); it was conditionalized a few lines below. Fix from Paul Eggert. I also tried out the STRICT_SYSV_CURSES case and am therefore removing the 'untested' comment.
* Bug #978833: Really close underlying socket in _socketobject.close.Martin v. Löwis2006-07-263-2/+7
| | | | | Fix httplib.HTTPConnection.getresponse to not close the socket if it is still needed for the response.
* Part of bug #1523610: fix miscalculation of buffer length.Georg Brandl2006-07-263-3/+39
| | | | | Also add a guard against NULL in converttuple and add a test case (that previously would have crashed).
* Bug #1459963: properly capitalize HTTP header names.Georg Brandl2006-07-264-26/+29
|
* NEWS entry for #1525766.Georg Brandl2006-07-261-0/+3
|
* Forward port some fixes that were in email 2.5 but for some reason didn't makeBarry Warsaw2006-07-263-1/+100
| | | | | | | it into email 4.0. Specifically, in Message.get_content_charset(), handle RFC 2231 headers that contain an encoding not known to Python, or a character in the data that isn't in the charset encoding. Also forward port the appropriate unit tests.
* Hmm, only python2.x is installed, not plain python. Did that change recently?Neal Norwitz2006-07-261-0/+4
|
* Whitespace normalization.Tim Peters2006-07-251-3/+3
|
* Fix bug #1517990: IDLE keybindings on OSXRonald Oussoren2006-07-254-2/+64
| | | | | | | This adds a new key definition for OSX, which is slightly different from the classic mac definition. Also add NEWS item for a couple of bugfixes I added recently.
* Fix for bug #1525447 (renaming to MacOSmodule.c would also work, but notRonald Oussoren2006-07-251-0/+0
| | | | | | | | without causing problems for anyone that is on a case-insensitive filesystem). Setup.py tries to compile the MacOS extension from MacOSmodule.c, while the actual file is named macosmodule.c. This is no problem on the (default) case-insensitive filesystem, but doesn't work on case-sensitive filesystems.
* Install the compatibility symlink to libpython.a on OSX using 'ln -sf' insteadRonald Oussoren2006-07-251-1/+1
| | | | of 'ln -s', this avoid problems when reinstalling python.
* Document the crashers that will not go away soon as "won't fix",Armin Rigo2006-07-252-0/+15
| | | | and explain why.
* Added another crasher, which hit me today (I was not intentionallyArmin Rigo2006-07-251-0/+16
| | | | | writing such code, of course, but it took some gdb time to figure out what my bug was).
* Document why is and is not a good way to fix the gc_inspection crasher.Armin Rigo2006-07-251-0/+15
|
* Fix a bug in the messages for an assert failure where not enough arguments ↵Brett Cannon2006-07-251-2/+2
| | | | | | to a string were being converted in the format.
* Add comment for changes to test_ossaudiodev.Brett Cannon2006-07-251-0/+8
|
* Patch #1525766: correctly pass onerror arg to recursive callsGeorg Brandl2006-07-251-4/+34
| | | | of pkg.walk_packages. Also improve the docstrings.
* Revert incomplete checkin.Martin v. Löwis2006-07-251-2/+0
|
* Bug #978833: Really close underlying socket in _socketobject.close.Martin v. Löwis2006-07-251-0/+2
| | | | Will backport to 2.4.
* Bug #1525817: Don't truncate short lines in IDLE's tool tips.Martin v. Löwis2006-07-252-1/+7
|
* current_frames_with_threads(): There's actually no wayTim Peters2006-07-251-3/+4
| | | | | | | | | | | to guess /which/ line the spawned thread is in at the time sys._current_frames() is called: we know it finished enter_g.set(), but can't know whether the instruction counter has advanced to the following leave_g.wait(). The latter is overwhelming most likely, but not guaranteed, and I see that the "x86 Ubuntu dapper (icc) trunk" buildbot found it on the other line once. Changed the test so it passes in either case.
* Don't use standard assert: want tests to fail even when run with -O.Greg Ward2006-07-251-15/+17
| | | | Delete cruft.
* Whitespace normalization.Tim Peters2006-07-243-10/+10
|
* Repair accidental NameError.Georg Brandl2006-07-241-1/+2
|
* - EditorWindow.test() was failing. Bug 1417598Kurt B. Kaiser2006-07-243-3/+6
| | | | | | M EditorWindow.py M ScriptBinding.py M NEWS.txt
* EditorWindow failed when used stand-alone if sys.ps1 not set.Kurt B. Kaiser2006-07-243-4/+7
| | | | | | | | Bug 1010370 Dave Florek M EditorWindow.py M PyShell.py M NEWS.txt
* Patch #1515343: Fix printing of deprecated string exceptions with aGeorg Brandl2006-07-243-44/+91
| | | | value in the traceback module.
* Patch #1527744: right order of includes in order to have HAVE_CONIO_H ↵Georg Brandl2006-07-241-3/+3
| | | | defined properly.