summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Fix compiler warnings on Darwin.Thomas Heller2006-04-251-5/+5
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 andThomas Wouters2006-04-251-0/+16
* SF bug/patch #1433877: string parameter to ioctl not null terminatedThomas Wouters2006-04-251-5/+10
* Updated the sqlite3 module to the external pysqlite 2.2.2 version.Gerhard Häring2006-04-2315-262/+229
* Patch 1471761 - test for broken poll at runtimeRonald Oussoren2006-04-231-17/+66
* Patch 1471925 - Weak linking support for OSXRonald Oussoren2006-04-233-2/+98
* Fix more ssize_t issues.Martin v. Löwis2006-04-222-4/+4
* Fix more ssize_t problems.Martin v. Löwis2006-04-223-8/+16
* Fix comment typoAndrew M. Kuchling2006-04-221-1/+1
* Merge in changes from ctypes 0.9.9.6 upstream version.Thomas Heller2006-04-219-99/+297
* Backport p3yk r45619:Hye-Shik Chang2006-04-211-4/+28
* This is a long-ago patch I submitted to SF (1100924) to time the gc passes.Skip Montanaro2006-04-211-0/+29
* Address issues brought up by MvL on python-checkins.Neal Norwitz2006-04-201-4/+4
* Whitespace, fix indentationNeal Norwitz2006-04-201-2/+1
* Correct implementation and documentation of os.confstr. Add a simple testSkip Montanaro2006-04-201-6/+9
* SF Patch #1062014: AF_UNIX sockets under Linux have a specialArmin Rigo2006-04-191-6/+31
* Rename remaining StgDictObject's ffi_type fields to ffi_type_pointer.Thomas Heller2006-04-181-3/+3
* C++ compiler cleanup: the typical few casts, and ... C++ didn't like thatSkip Montanaro2006-04-186-37/+42
* C++ compiler cleanup: a cast here, a cast there... still does not compile und...Skip Montanaro2006-04-181-3/+4
* C++ compiler cleanup: "typename" is a C++ keywordSkip Montanaro2006-04-181-11/+11
* Fix refcounting.Thomas Heller2006-04-181-0/+2
* C++ compiler cleanup: proper castsSkip Montanaro2006-04-181-2/+2
* correct function signatureSkip Montanaro2006-04-181-1/+1
* reset errno before calling confstr - use confstr() doc to simplify checks aft...Skip Montanaro2006-04-181-7/+9
* Remove unused fieldNeal Norwitz2006-04-171-1/+0
* No reason to export get_decomp_record, make staticNeal Norwitz2006-04-171-1/+1
* Initialize structseq types only once.Martin v. Löwis2006-04-167-17/+48
* Fix valgrind problem with invalid memory readNeal Norwitz2006-04-161-2/+1
* Fix memory leakNeal Norwitz2006-04-161-1/+5
* err is no longer usedNeal Norwitz2006-04-161-1/+1
* Add missing PyObject_GC_Track call, causing *some* itertools.tee objects toThomas Wouters2006-04-151-0/+1
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-156-74/+38
* Fix for FreeBSD. Fixes http://python.org/sf/1470353.Thomas Heller2006-04-151-2/+2
* Remove partial change (don't edit, commit and think at the same time :P)Thomas Wouters2006-04-151-1/+0
* Re-instate backward compatibility by defining Py_CLEAR if it isn'tThomas Wouters2006-04-151-0/+14
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-154-37/+24
* Patch #1191065: Fix preprocessor problems on systems where recvfromMartin v. Löwis2006-04-151-6/+8
* Coverity-found bug: datetime_strptime() failed to check for NULL return fromThomas Wouters2006-04-141-0/+4
* 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++ c...Anthony Baxter2006-04-131-0/+10
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-133-0/+29
* Fix for a bug found by Armin Rigo, plus test.Thomas Heller2006-04-121-1/+1