summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch #1521817: The index range checking on ctypes arrays containingThomas Heller2006-07-143-75/+12
| | | | exactly one element is enabled again.
* Make the prototypes of our private PyUnicode_FromWideChar andThomas Heller2006-07-142-5/+6
| | | | | PyUnicode_AsWideChar replacement functions compatible to the official functions by using Py_ssize_t instead of int.
* Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode.Peter Astrand2006-07-144-13/+21
|
* Mention new optionsAndrew M. Kuchling2006-07-141-0/+5
|
* Fix Debug build of _ssl.Martin v. Löwis2006-07-143-10/+15
|
* Add debug output to analyse buildbot failure.Martin v. Löwis2006-07-141-0/+1
|
* Extend build_ssl to Win64, using VSExtComp.Martin v. Löwis2006-07-145-45/+78
|
* Try to improve grammar further.Neal Norwitz2006-07-141-1/+1
|
* Patch #1521874: grammar errors in doanddont.tex.Georg Brandl2006-07-141-2/+3
|
* Typo fixAndrew M. Kuchling2006-07-131-1/+1
|
* Fix misleading words.Thomas Heller2006-07-131-1/+1
|
* Fix #1521375. When running with root priviledges, 'gcc -o /dev/null'Thomas Heller2006-07-132-1/+13
| | | | did overwrite /dev/null. Use a temporary file instead of /dev/null.
* A misspelled preprocessor symbol caused ctypes to be always compiledThomas Heller2006-07-134-11/+14
| | | | without thread support. Replaced WITH_THREADS with WITH_THREAD.
* Accept long options "--help" and "--version".Georg Brandl2006-07-123-7/+34
|
* Fix the wrong description of LibraryLoader.LoadLibrary, and documentThomas Heller2006-07-121-7/+12
| | | | the DEFAULT_MODE constant.
* Fix #1467450: ctypes now uses RTLD_GLOBAL by default on OSX 10.3 toThomas Heller2006-07-122-1/+20
| | | | load shared libraries.
* Actually change the MAGIC #. Create a new section for 2.5c1 and mention the ↵Neal Norwitz2006-07-122-3/+20
| | | | impact of changing the MAGIC #.
* Fix uninitialized memory read reported by Valgrind when running doctest.Neal Norwitz2006-07-121-0/+1
| | | | This could happen if size == 0.
* Fix function name in error msgNeal Norwitz2006-07-121-1/+1
|
* Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.Neal Norwitz2006-07-124-2/+14
|
* Change the ctypes version number to 1.0.0.Thomas Heller2006-07-112-2/+2
|
* When a foreign function is retrived by calling __getitem__ on a ctypesThomas Heller2006-07-111-2/+3
| | | | library instance, do not set it as attribute.
* Bump version number; add sys._current_framesAndrew M. Kuchling2006-07-111-2/+8
|
* Add missing Py_DECREFs.Thomas Heller2006-07-111-1/+2
|
* Add missing Py_DECREF.Thomas Heller2006-07-111-0/+1
|
* Tagging for release of Python 2.5b2Anthony Baxter2006-07-111-0/+1
|
* Whitespace normalization.v2.5b2Tim Peters2006-07-111-1/+1
|
* #1494314: Fix a regression with high-numbered sockets in 2.4.3. ThisAnthony Baxter2006-07-113-17/+76
| | | | | means that select() on sockets > FD_SETSIZE (typically 1024) work again. The patch makes sockets use poll() internally where available.
* Patch #1519566: Remove unused _tofill member.Martin v. Löwis2006-07-103-13/+28
| | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes.
* Whitespace normalization.Tim Peters2006-07-101-1/+1
|
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-106-11/+166
| | | | | | branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame.
* Make it possible to run test_subprocess.py with Python 2.2, which lacks ↵Peter Astrand2006-07-101-3/+6
| | | | test_support.reap_children().
* Fix SF#1457312: bad socket error handling in distutils "upload" command.Phillip J. Eby2006-07-101-1/+1
|
* Fix SF#1516184 and add a test to prevent regression.Phillip J. Eby2006-07-102-12/+19
|
* Moved the ctypes news entries from the 'Library' section into theThomas Heller2006-07-101-16/+16
| | | | | | | 'Extension Modules' section where they belong, probably. This destroyes the original order of the news entries, don't know if that is important or not.
* Assigning None to pointer type structure fields possible overwroteThomas Heller2006-07-103-1/+14
| | | | wrong fields.
* Fixed a segfault when ctypes.wintypes were imported onThomas Heller2006-07-102-2/+12
| | | | non-Windows machines.
* Fix bug #1518190: accept any integer or long value in theThomas Heller2006-07-103-8/+39
| | | | ctypes.c_void_p constructor.
* preparing for 2.5b2Anthony Baxter2006-07-107-7/+12
|
* Add svn:ignore.Martin v. Löwis2006-07-100-0/+0
|
* Change error message to indicate that VS2003 is necessary to build extension ↵Martin v. Löwis2006-07-101-1/+1
| | | | modules, not the .NET SDK.
* Introduce DISTUTILS_USE_SDK as a flag to determine whether theMartin v. Löwis2006-07-103-4/+19
| | | | SDK environment should be used. Fixes #1508010.
* Patch #1504046: Add documentation for xml.etree.Neal Norwitz2006-07-104-0/+370
| | | | | | /F wrote the text docs, Englebert Gruber massaged it to latex and I did some more massaging to try and improve the consistency and fix some name mismatches between the declaration and text.
* Patch #1516912: improve Modules support for OpenVMS.Neal Norwitz2006-07-109-63/+154
|
* Part of SF patch #1484695. This removes dead code. The chksum wasNeal Norwitz2006-07-101-7/+0
| | | | | | already verified in .frombuf() on the lines above. If there was a problem an exception is raised, so there was no way this condition could have been true.
* Fix doco. Backport candidate.Neal Norwitz2006-07-101-1/+1
|
* Bug #1512814, Fix incorrect lineno's when code at module scopeNeal Norwitz2006-07-103-1/+22
| | | | started after line 256.
* On 64 bit systems, int literals that use less than 64 bits are now intsNeal Norwitz2006-07-093-0/+29
| | | | rather than longs. This also fixes the test for eval(-sys.maxint - 1).
* Fix SF bug 1441486: bad unary minus folding in compiler.Neil Schemenauer2006-07-093-20/+60
|
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-095-4/+20
|