- a355c14 Whoops. by Georg Brandl · 19 years ago
- bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 19 years ago
- 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
- 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 19 years ago
- 162997e Silence a warning. by Armin Rigo · 19 years ago
- 28b2686 simplify the struct code a bit (no functional changes) by Bob Ippolito · 19 years ago
- bda0744 Convert fmmodule to METH_VARARGS. by Georg Brandl · 19 years ago
- c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 19 years ago
- c7c5114 Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. by Georg Brandl · 19 years ago
- 964f597 METH_NOARGS functions do get called with two args. by Georg Brandl · 19 years ago
- 660222f Convert audioop over to METH_VARARGS. by Georg Brandl · 19 years ago
- fbef588 Fix C function calling conventions in _sre module. by Georg Brandl · 19 years ago
- c26025c Fix ref-antileak in _struct.c which eventually lead to deallocating None. by Georg Brandl · 19 years ago
- cd51ca5 fix struct regression on 64-bit platforms by Bob Ippolito · 19 years ago
- 2d40077 needforspeed: use PyObject_MALLOC instead of system malloc for small by Jack Diederich · 19 years ago
- 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
- 1fcdc23 Fix up struct docstrings, add struct.pack_to function for symmetry by Bob Ippolito · 19 years ago
- 90bd0a5 Remove the range checking and int usage #defines from _struct and strip out the now-dead code by Bob Ippolito · 19 years ago
- d532ba0 Explain why 'consumed' is initialized. by Martin v. Löwis · 19 years ago
- d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 19 years ago
- 2f3136b Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code looked duplicated, I wonder if a utility function could help reduce the duplication here.) by Neal Norwitz · 19 years ago
- aa70a17 enable all of the struct tests, use ssize_t, fix some whitespace by Bob Ippolito · 19 years ago
- 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 19 years ago
- 735ae48 Repair Windows compiler warnings about mixing by Tim Peters · 19 years ago
- 0cbf2c5 fix signed/unsigned mismatch in struct by Bob Ippolito · 19 years ago
- 1d2b0e3 Enable PY_USE_INT_WHEN_POSSIBLE in struct by Bob Ippolito · 19 years ago
- 685dda8 Fix _struct typo that broke some 64-bit platforms by Bob Ippolito · 19 years ago
- ad64785 Fix distutils so that libffi will cross-compile between darwin/x86 and darwin/ppc by Bob Ippolito · 19 years ago
- e27337b fix #1229380 No struct.pack exception for some out of range integers by Bob Ippolito · 19 years ago
- 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 19 years ago
- 6c433a9 use Py_ssize_t in places that may need it by Jack Diederich · 19 years ago
- c285e62 Repair idiot typo, and complete the job of trying to by Tim Peters · 19 years ago
- 4c803f1 Move over to use of METH_O and METH_NOARGS. by Brett Cannon · 19 years ago
- 45c6472 Add missing files from x86 darwin ctypes patch by Bob Ippolito · 19 years ago
- 7a822da Some Win64 pre-release in 2000 didn't support by Tim Peters · 19 years ago
- f5bc414 Fix minor typo in prep_cif.c by Ronald Oussoren · 19 years ago
- 964e02a fix test_float regression and 64-bit size mismatch issue by Bob Ippolito · 19 years ago
- 66c0935 enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --enable-universalsdk) by Bob Ippolito · 19 years ago
- a99865b Use faster struct pack/unpack functions for the endian table that matches the host's by Bob Ippolito · 19 years ago
- 04ab994 Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incorrect INT_MIN and INT_MAX by Bob Ippolito · 19 years ago
- 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 19 years ago
- 3b0cae9 fix a struct regression where long would be returned for short unsigned integers by Bob Ippolito · 19 years ago
- 3fc2bb9 Fix Cygwin compiler issue by Bob Ippolito · 19 years ago
- 94f68ee Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifdef'ed out code that will return int instead of long when in bounds (not active since it's an API and doc change) by Bob Ippolito · 19 years ago
- eb62127 refactor unpack, add unpack_from by Bob Ippolito · 19 years ago
- 07c023b fix typo in _struct by Bob Ippolito · 19 years ago
- d3611eb forward declaration for PyStructType by Bob Ippolito · 19 years ago
- 4de3f99 fix linking issue, warnings, in struct by Bob Ippolito · 19 years ago
- 232f3c9 patch #1493701: performance enhancements for struct module by Bob Ippolito · 19 years ago
- 7ccc95a patch #1493701: performance enhancements for struct module by Bob Ippolito · 19 years ago
- 27abce5 revert #1493701 by Bob Ippolito · 19 years ago
- fb8b84a Patch #1493701: performance enhancements for struct module. by Bob Ippolito · 19 years ago
- a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 19 years ago
- 378d592 Patch #1490224: set time.altzone correctly on Cygwin. by Georg Brandl · 19 years ago
- 9e5b5e4 Fix typo in os.utime docstring (patch #1490189) by Georg Brandl · 19 years ago
- 402cc24 PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path. by Tim Peters · 19 years ago
- 8d3342b Patch #1435422: zlib's compress and decompress objects now have a copy() method. by Georg Brandl · 19 years ago
- 5f5d99c - Test for sys/statvfs.h before including it, as statvfs is present by Martin v. Löwis · 19 years ago
- e3edaea Fix memory leak. by Martin v. Löwis · 19 years ago
- 375f06b Remove lie in new comment. by Tim Peters · 19 years ago
- 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 19 years ago
- 77c176d Fix alignment error on Itanium. by Martin v. Löwis · 19 years ago
- 682b1bb Dynamically allocate path name buffer for Unicode by Martin v. Löwis · 19 years ago
- 38e3b7d Don't mask a no memory error with a less meaningful one as discussed on python-checkins by Neal Norwitz · 19 years ago
- c6a989a Fix problems found by Coverity. by Neal Norwitz · 19 years ago
- 9f485bc Add missing PyMem_Free. by Martin v. Löwis · 19 years ago
- d4e3bb3 Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. by Martin v. Löwis · 19 years ago
- 9b83fc6 Clean up. by Thomas Heller · 19 years ago
- 21a929f Export the 'free' standard C function for use in the test suite. by Thomas Heller · 19 years ago
- 4fc2bda Drop now-unnecessary arguments to posix_2str. by Martin v. Löwis · 19 years ago
- 8e0d494 Implement os.{chdir,rename,rmdir,remove} using Win32 directly. by Martin v. Löwis · 19 years ago
- da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
- 9652baa Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1. by Neal Norwitz · 19 years ago
- 8672519 Work around deadlock risk. Will backport. by Martin v. Löwis · 19 years ago
- de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 19 years ago
- b75d43d Further changes for #1471883: Edit Misc/NEWS, and add expat_config.h. by Martin v. Löwis · 19 years ago
- 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 19 years ago
- 82d4cc2 Fix some warnings on Mac OS X 10.4 by Neal Norwitz · 19 years ago
- f4795c8 Fix build on MIPS for libffi. I haven't tested this yet because I by Hye-Shik Chang · 19 years ago
- 57a0361 Patch from Aldo Cortesi (OpenBSD buildbot owner). by Neal Norwitz · 19 years ago
- 4e1777d Fix compiler warnings on Darwin. by Thomas Heller · 19 years ago
- 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 19 years ago
- 0452049 Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and by Thomas Wouters · 19 years ago
- 6dbff33 SF bug/patch #1433877: string parameter to ioctl not null terminated by Thomas Wouters · 19 years ago
- 3e99c0a Updated the sqlite3 module to the external pysqlite 2.2.2 version. by Gerhard Häring · 19 years ago
- 32fd16e Patch 1471761 - test for broken poll at runtime by Ronald Oussoren · 19 years ago
- d06b6f2 Patch 1471925 - Weak linking support for OSX by Ronald Oussoren · 19 years ago
- 6685128 Fix more ssize_t issues. by Martin v. Löwis · 19 years ago
- 26fd960 Fix more ssize_t problems. by Martin v. Löwis · 19 years ago
- 6ce35a9 Fix comment typo by Andrew M. Kuchling · 19 years ago
- 4b75a7c Merge in changes from ctypes 0.9.9.6 upstream version. by Thomas Heller · 19 years ago
- db8955b Backport p3yk r45619: by Hye-Shik Chang · 19 years ago
- c34b931 This is a long-ago patch I submitted to SF (1100924) to time the gc passes. by Skip Montanaro · 19 years ago
- 449b24e Address issues brought up by MvL on python-checkins. by Neal Norwitz · 19 years ago
- 0d21b1e Whitespace, fix indentation by Neal Norwitz · 19 years ago
- 94785ef Correct implementation and documentation of os.confstr. Add a simple test by Skip Montanaro · 19 years ago
- a9017c3 SF Patch #1062014: AF_UNIX sockets under Linux have a special by Armin Rigo · 19 years ago
- b6dfaed Rename remaining StgDictObject's ffi_type fields to ffi_type_pointer. by Thomas Heller · 19 years ago
- 058be9a C++ compiler cleanup: the typical few casts, and ... C++ didn't like that by Skip Montanaro · 19 years ago
- cbe2e49 C++ compiler cleanup: a cast here, a cast there... still does not compile under C++ though... by Skip Montanaro · 19 years ago