summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1470300: Port _hotshot to QNX4.25 port.Martin v. Löwis2006-04-141-2/+2
|
* Patch #1324762: Change --with-cxx to --with-cxx-main.Martin v. Löwis2006-04-141-11/+0
|
* Add a test for Py_ssize_t. Correct typo in getargs.c.Georg Brandl2006-04-131-11/+21
|
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-1/+1
|
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-3/+3
|
* Add PY_SSIZE_T_MIN/MAX to _testcapi.Georg Brandl2006-04-131-0/+2
|
* C++ compiler changes. casts, rename variables with reserved names.Anthony Baxter2006-04-133-32/+32
|
* Support NFD of very long strings.Martin v. Löwis2006-04-131-3/+3
|
* whoops. missed one in an auto-generated file. another extern "C" {} for C++ ↵Anthony Baxter2006-04-131-0/+10
| | | | compiler compatibility
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-133-0/+29
| | | | | using a C++ compiler. Still lots and lots of errors in the modules built by setup.py, and a bunch of warnings from g++ in the core.
* Fix for a bug found by Armin Rigo, plus test.Thomas Heller2006-04-121-1/+1
| | | | https://sourceforge.net/tracker/?func=detail&atid=532154&aid=1467852&group_id=71702
* Off-by-one buffer overflow error.Armin Rigo2006-04-121-1/+1
|
* Update for new grammarNeal Norwitz2006-04-121-4/+4
|
* remove forward declarations. No constructors to move for these files. MakesAnthony Baxter2006-04-122-6/+1
| | | | code work with C++ compilers.
* Move constructors, add some casts to make C++ compiler happy. Still a problemAnthony Baxter2006-04-121-202/+201
| | | | with the getstring() results in pattern_subx. Will come back to that.
* remove forward declarations, move constructor functions. makes code C++ safe.Anthony Baxter2006-04-121-43/+42
|
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-114-9/+10
|
* Clear errno before calling opendir() and readdir().Georg Brandl2006-04-111-0/+1
|
* Bug #1467952: os.listdir() now correctly raises an error if readdir()Georg Brandl2006-04-111-0/+6
| | | | fails with an error condition.
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-1/+5
| | | | | | | | that are suspended outside of any try/except/finally blocks to be garbage collected even if they are part of a cycle. Generators that suspend inside of an active try/except or try/finally block (including those created by a ``with`` statement) are still not GC-able if they are part of a cycle, however.
* Fix warning about ptsname not being a prototype on Solaris. Is this ↵Neal Norwitz2006-04-101-1/+1
| | | | prototype even necessary anymore?
* Get rid of warnings about using chars as subscriptsNeal Norwitz2006-04-102-3/+3
| | | | on Alpha (and possibly other platforms) by using Py_CHARMASK().
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-103-6/+4
|
* Fix problem (not checking return result) reported by CoverityNeal Norwitz2006-04-091-1/+4
|
* Fix bsddb.db.DBError derived exceptions so they can be unpickled.Gregory P. Smith2006-04-081-6/+22
| | | | | Also adds some backwards compatibility when compiling _bsddb.c on earlier python versions (needed for pybsddb).
* Patch #1462080: Conditionalize some NETLINK defines.Martin v. Löwis2006-04-061-0/+11
|
* Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module.Thomas Heller2006-04-061-2/+12
| | | | | | | If RTLD_LOCAL is not #defined in any header file (Windows), set it to 0. If RTLD_GLOBAL is not #defined, set it equal to RTLD_LOCAL. This should fix ctypes on cygwin.
* Replace a few more 'char' types with 'signed char', to fix test failuresThomas Heller2006-04-061-5/+5
| | | | on platforms (ppc debian) where 'char' is unsigned.
* This change shouldn't have any functional effect. Coverity wasNeal Norwitz2006-04-061-1/+1
| | | | complaining because it seemed like parameters_iter could be NULL.
* Fix unchecked return result from Coverity.Neal Norwitz2006-04-061-0/+2
|
* Handle ssize_tNeal Norwitz2006-04-061-2/+2
|
* Handle error conditions from PyString_ConcatAndDel().Neal Norwitz2006-04-061-1/+6
|
* Handle ssize_tNeal Norwitz2006-04-061-3/+4
| | | | | | No need to INCREF then let PyString_ConcatAndDel() DECREF. Just use PyString_Concat(). Handle error condition if we can't concat.
* Explicitely use 'signed char', to avoid problems on platforms with unsigned ↵Thomas Heller2006-04-051-26/+26
| | | | char type.
* Explicitely use 'signed char', to avoid problems on platforms with unsigned ↵Thomas Heller2006-04-051-2/+2
| | | | char type.
* upgrade to final version of pysqlite 2.2.0Anthony Baxter2006-04-059-30/+23
|
* docstring tweakFredrik Lundh2006-04-041-1/+1
|
* SF Bug #1448488 - make collectionsmodule build on Cygwin, using the sameAnthony Baxter2006-04-041-2/+6
| | | | techniques as in Modules/xxsubtype.c
* Fix a couple of memory issuesNeal Norwitz2006-04-041-3/+3
|
* Update to pysqlite 2.2.0Anthony Baxter2006-04-0412-129/+416
|
* Properly support empty woperation in win32_startfile;Martin v. Löwis2006-04-031-9/+12
| | | | correct arguments to ShellExecuteW.
* Try to fix the build on Mac OS X 10.3. The 'live_support' segmentThomas Heller2006-04-031-1/+1
| | | | attribute is not supported in this version.
* - add missing chunk for patch #1117961Matthias Klose2006-04-031-2/+2
|
* - Patch #360466: Replace the MD5 implementation from RSA Data Security IncMatthias Klose2006-04-034-344/+465
| | | | with the implementation from http://sourceforge.net/projects/libmd5-rfc/.
* Try to fix the tests on OpenBSD. Apparently OpenBSD passesThomas Heller2006-04-031-2/+2
| | | | structure parameters differently than other posix-like systems.
* Bug #1451503: allow unicode filenames in os.startfile().Georg Brandl2006-04-031-0/+35
|
* Whitespace: break long lineNeal Norwitz2006-04-031-1/+2
|
* Make ssize_t cleanNeal Norwitz2006-04-014-6/+6
|
* backport r243 from the pysqlite2 svn repository - lowers the required versionAnthony Baxter2006-04-013-126/+151
| | | | | | of SQLite3 from 3.2.2 to 3.0.8, by providing an alternative to sqlite3_transfer_bindings. setup.py also handles the common (in debian and ubuntu, at least) case of a buggy sqlite3.h SQLITE_VERSION_NUMBER.
* Patch #1459631: documnent zlib.Decompress.flush() length parameter.Georg Brandl2006-04-011-1/+3
|