kai/samba.git
15 years agos4 libnet: Add support for groupinfo by sid lookup
Kai Blin [Fri, 26 Dec 2008 10:32:09 +0000 (11:32 +0100)]
s4 libnet: Add support for groupinfo by sid lookup

15 years agos4 winbind: Fix typos in debug output
Kai Blin [Fri, 26 Dec 2008 10:08:13 +0000 (11:08 +0100)]
s4 winbind: Fix typos in debug output

15 years agowbinfo4: Add --gid-info option
Kai Blin [Fri, 26 Dec 2008 10:04:01 +0000 (11:04 +0100)]
wbinfo4: Add --gid-info option

15 years agowbinfo: Add --gid-info option.
Kai Blin [Fri, 26 Dec 2008 10:02:02 +0000 (11:02 +0100)]
wbinfo: Add --gid-info option.

15 years agos4 winbind: Add implementation for WINBINDD_GETGRNAM
Kai Blin [Fri, 26 Dec 2008 09:36:29 +0000 (10:36 +0100)]
s4 winbind: Add implementation for WINBINDD_GETGRNAM

15 years agos4 winbind: Avoid a "discards const" compiler warning.
Kai Blin [Fri, 26 Dec 2008 09:35:00 +0000 (10:35 +0100)]
s4 winbind: Avoid a "discards const" compiler warning.

15 years agos4 libnet: Add group_name member to struct libnet_GroupInfo's out struct.
Kai Blin [Fri, 26 Dec 2008 09:17:38 +0000 (10:17 +0100)]
s4 libnet: Add group_name member to struct libnet_GroupInfo's out struct.

15 years agos4:kdc: pass down event_context explicit
Stefan Metzmacher [Mon, 29 Dec 2008 08:37:02 +0000 (09:37 +0100)]
s4:kdc: pass down event_context explicit

metze

15 years agos4:libnet_samdump_keytab: pass down event_context explicit
Stefan Metzmacher [Mon, 29 Dec 2008 08:36:20 +0000 (09:36 +0100)]
s4:libnet_samdump_keytab: pass down event_context explicit

metze

15 years agos3:dbwrap: fix dbwrap_store_uint32() to match dbwrap_store_int32()
Stefan Metzmacher [Wed, 17 Dec 2008 16:16:50 +0000 (17:16 +0100)]
s3:dbwrap: fix dbwrap_store_uint32() to match dbwrap_store_int32()

All callers expect 0 an success and -1 on error.

metze

15 years agopyglue: fix the build with automatic dependecies
Stefan Metzmacher [Mon, 29 Dec 2008 07:40:04 +0000 (08:40 +0100)]
pyglue: fix the build with automatic dependecies

metze

15 years agolib/tevent: rename event_* => tevent_* in the header file
Stefan Metzmacher [Wed, 24 Dec 2008 12:52:57 +0000 (13:52 +0100)]
lib/tevent: rename event_* => tevent_* in the header file

We have compat macros to keep the callers happy.

metze

15 years agoAdd -D option to sharesec util to delete the entire security descriptor.
Steven Danneman [Mon, 29 Dec 2008 01:22:28 +0000 (17:22 -0800)]
Add -D option to sharesec util to delete the entire security descriptor.

* also modified --usage descriptions to be more accurate

15 years agoChange error messages in sharesec util to go to stderr instead of stdout
Steven Danneman [Mon, 29 Dec 2008 01:21:36 +0000 (17:21 -0800)]
Change error messages in sharesec util to go to stderr instead of stdout

15 years agoMake sure share_info.tdb is open before attempting to delete an entry
Steven Danneman [Mon, 29 Dec 2008 01:16:28 +0000 (17:16 -0800)]
Make sure share_info.tdb is open before attempting to delete an entry

15 years agoMake sharesec utility part of the default binary install.
Steven Danneman [Fri, 26 Dec 2008 20:41:29 +0000 (12:41 -0800)]
Make sharesec utility part of the default binary install.

15 years agoCleaned up whitespace issues in sharesec.c
Steven Danneman [Thu, 25 Dec 2008 01:03:22 +0000 (17:03 -0800)]
Cleaned up whitespace issues in sharesec.c

15 years agoFix Samba 3 merged build - include tevent.
Jelmer Vernooij [Sun, 28 Dec 2008 03:12:46 +0000 (04:12 +0100)]
Fix Samba 3 merged build - include tevent.

15 years agoFix some tevent includes, trying to fix the build
Kai Blin [Fri, 26 Dec 2008 13:09:02 +0000 (14:09 +0100)]
Fix some tevent includes, trying to fix the build

15 years agoTry to fix the build by fixing some typos in the vfs code
Kai Blin [Fri, 26 Dec 2008 12:32:26 +0000 (13:32 +0100)]
Try to fix the build by fixing some typos in the vfs code

15 years agoFix bug #5990 - strict allocate should be checked before ftruncate
Jeremy Allison [Thu, 25 Dec 2008 20:13:12 +0000 (12:13 -0800)]
Fix bug #5990 - strict allocate should be checked before ftruncate
reported by and based on a patch by Yasuma Takeda
<yasuma@osstech.co.jp>.
Jeremy.

15 years agos3:idmap: Remove passd check from idmap_backends_unixid_to_sid().
Michael Adam [Wed, 1 Oct 2008 06:53:15 +0000 (08:53 +0200)]
s3:idmap: Remove passd check from idmap_backends_unixid_to_sid().

As noted by Metzy, it makes no sense here to check id->sid.
What is worse, this might even be passed in uninitialized.

This still fixes the bug for me (of course), but we might need
to check, if another special handling of passdb is needed
(possibly changing from constant return code NT_STATUS_OK...)

Michael

Signed-off-by: Michael Adam <obnox@samba.org>
15 years agos:Fix uid_to_sid mapping when the idmap cache is empty.
Michael Adam [Wed, 1 Oct 2008 06:30:15 +0000 (08:30 +0200)]
s:Fix uid_to_sid mapping when the idmap cache is empty.

This failed for backends other than passed, since
idmap_backends_unixid_to_sid() always asked passdb first,
which returned Success no matter whether a mapping was
found or not.

One effect wast that getpwuid failed after "net cache flush".
Only after filling the cache with a getpwnam call it succeeded.

This fix makes the behaviour of idmap_backends_unixid_to_sid()
exactly the same as that of idmap_backends_sid_to_unixid()

Michael

Signed-off-by: Michael Adam <obnox@samba.org>
15 years agolib/tevent: libtevent will change a lot until it's version 1.0.0
Stefan Metzmacher [Wed, 24 Dec 2008 12:50:47 +0000 (13:50 +0100)]
lib/tevent: libtevent will change a lot until it's version 1.0.0

metze

15 years agoFix accidental condition inversion.
Jelmer Vernooij [Wed, 24 Dec 2008 04:39:29 +0000 (05:39 +0100)]
Fix accidental condition inversion.

15 years agoRename samba-socket -> samba_socket to fix a couple more compiler
Jelmer Vernooij [Tue, 23 Dec 2008 23:15:43 +0000 (00:15 +0100)]
Rename samba-socket -> samba_socket to fix a couple more compiler
warnings.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Tue, 23 Dec 2008 22:26:32 +0000 (23:26 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agos4: Fix make clean to remove gen_ndr objects.
Jelmer Vernooij [Tue, 23 Dec 2008 22:24:12 +0000 (23:24 +0100)]
s4: Fix make clean to remove gen_ndr objects.

15 years agoFix more compiler warnings.
Jelmer Vernooij [Tue, 23 Dec 2008 22:22:57 +0000 (23:22 +0100)]
Fix more compiler warnings.

15 years agoUse 32-bit smbpid in interface as required by SMB2, in line with
Jelmer Vernooij [Tue, 23 Dec 2008 22:02:54 +0000 (23:02 +0100)]
Use 32-bit smbpid in interface as required by SMB2, in line with
1bdd08227e7d046305705050f21f0f1b6dd6994a.

15 years agoFix more compiler warnings in various places.
Jelmer Vernooij [Tue, 23 Dec 2008 21:57:11 +0000 (22:57 +0100)]
Fix more compiler warnings in various places.

15 years agoInstall tevent_internal.h, as Samba 4 needs it.
Jelmer Vernooij [Tue, 23 Dec 2008 21:57:00 +0000 (22:57 +0100)]
Install tevent_internal.h, as Samba 4 needs it.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Tue, 23 Dec 2008 21:12:23 +0000 (22:12 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agoFix compiler warnings in libnet.
Jelmer Vernooij [Tue, 23 Dec 2008 21:11:21 +0000 (22:11 +0100)]
Fix compiler warnings in libnet.

15 years agoFix use of "time offset" parameter, and add test to make sure I don't break it again :-)
Jelmer Vernooij [Tue, 23 Dec 2008 21:10:34 +0000 (22:10 +0100)]
Fix use of "time offset" parameter, and add test to make sure I don't break it again :-)

15 years agoFix more asprintf warnings and some error path errors.
Jeremy Allison [Tue, 23 Dec 2008 20:11:12 +0000 (12:11 -0800)]
Fix more asprintf warnings and some error path errors.
Jeremy.

15 years agoMore asprintf warning fixes.
Jeremy Allison [Tue, 23 Dec 2008 19:56:48 +0000 (11:56 -0800)]
More asprintf warning fixes.
Jeremy.

15 years agoMore asprintf warning fixes.
Jeremy Allison [Tue, 23 Dec 2008 19:45:26 +0000 (11:45 -0800)]
More asprintf warning fixes.
Jeremy.

15 years agoFix more asprintf errors and error code paths.
Jeremy Allison [Tue, 23 Dec 2008 19:27:19 +0000 (11:27 -0800)]
Fix more asprintf errors and error code paths.
Jeremy.

15 years agoAdd missing includes, required for use of gensec by 3rd-party
Matthias Dieter Wallnöfer [Tue, 23 Dec 2008 19:17:59 +0000 (20:17 +0100)]
Add missing includes, required for use of gensec by 3rd-party
applications.

15 years agopytevent: Add missing file.
Jelmer Vernooij [Tue, 23 Dec 2008 19:13:17 +0000 (20:13 +0100)]
pytevent: Add missing file.

15 years agoAllow using external libtevent.
Jelmer Vernooij [Tue, 23 Dec 2008 18:59:57 +0000 (19:59 +0100)]
Allow using external libtevent.

15 years agostandalone: Use more variables, preparing to include these files from main
Jelmer Vernooij [Tue, 23 Dec 2008 18:39:52 +0000 (19:39 +0100)]
standalone: Use more variables, preparing to include these files from main
Samba 4 makefile.

15 years agoMerge branch 'master' of ssh://jra@git.samba.org/data/git/samba
Jeremy Allison [Tue, 23 Dec 2008 18:43:02 +0000 (10:43 -0800)]
Merge branch 'master' of ssh://jra@git.samba.org/data/git/samba

15 years agoFix more ‘asprintf’, declared with attribute warn_unused_result.
Jeremy Allison [Tue, 23 Dec 2008 18:42:25 +0000 (10:42 -0800)]
Fix more ‘asprintf’, declared with attribute warn_unused_result.
Jeremy.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Tue, 23 Dec 2008 18:30:16 +0000 (19:30 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agoMove Samba4-specific file out of common libtevent.
Jelmer Vernooij [Tue, 23 Dec 2008 18:28:22 +0000 (19:28 +0100)]
Move Samba4-specific file out of common libtevent.

15 years agoFix more "warning: ignoring return value of ‘asprintf’, declared with
Jeremy Allison [Tue, 23 Dec 2008 18:27:24 +0000 (10:27 -0800)]
Fix more "warning: ignoring return value of ‘asprintf’, declared with
attribute warn_unused_result"
Jeremy.

15 years agoFix another "format not a string literal and no format arguments" warning.
Jeremy Allison [Tue, 23 Dec 2008 17:50:10 +0000 (09:50 -0800)]
Fix another "format not a string literal and no format arguments" warning.
Jeremy

15 years agoFix silly typo.
Jelmer Vernooij [Tue, 23 Dec 2008 11:14:25 +0000 (12:14 +0100)]
Fix silly typo.

15 years agopyldb: Provide replacement for sizeargfunc, not available before Python2.5.
Jelmer Vernooij [Tue, 23 Dec 2008 10:48:14 +0000 (11:48 +0100)]
pyldb: Provide replacement for sizeargfunc, not available before Python2.5.

15 years agosamba.tests.samdb: Fix test after merger of samba.security and
Jelmer Vernooij [Tue, 23 Dec 2008 10:44:10 +0000 (11:44 +0100)]
samba.tests.samdb: Fix test after merger of samba.security and
samba.dcerpc.security

15 years agopython: Define Py_ssize_t if the Python library doesn't.
Jelmer Vernooij [Tue, 23 Dec 2008 10:25:06 +0000 (11:25 +0100)]
python: Define Py_ssize_t if the Python library doesn't.

15 years agos3: Fix stream marshalling to return the correct streaminfo status
Tim Prouty [Tue, 23 Dec 2008 06:35:24 +0000 (22:35 -0800)]
s3: Fix stream marshalling to return the correct streaminfo status

When there are enough streams on a file to fill up the max_data_count
when responding to a trans2 streaminfo, samba is returning
NT_STATUS_BUFFER_TOO_SMALL.  Windows handles this by returning
NT_STATUS_BUFFER_OVERFLOW while still sending as much of the data that
it can fit into the buffer.  When the windows client sees
BUFFER_OVERFLOW, it retries the streaminfo with a larger buffer (2x).
The windows client starts at 2K and will continue increasing the
buffer size by two until it reaches 64K.  If the streams don't fit in
64K the windows client seems to give up.

This patch fixes marshall_stream_info to overfill the buffer by 1
stream so that send_trans2_replies can properly detect the overflow
and return the correct status.

15 years agopyldb: Fix segfault because of incorrect reference counting.
Jelmer Vernooij [Tue, 23 Dec 2008 04:34:21 +0000 (05:34 +0100)]
pyldb: Fix segfault because of incorrect reference counting.

15 years agopyldb: Avoid use of pytalloc, as it may not be available.
Jelmer Vernooij [Tue, 23 Dec 2008 04:07:29 +0000 (05:07 +0100)]
pyldb: Avoid use of pytalloc, as it may not be available.

15 years agoIn gcc version 4.3.2 we get warnings for functions declared with
Jeremy Allison [Tue, 23 Dec 2008 04:08:14 +0000 (20:08 -0800)]
In gcc version 4.3.2 we get warnings for functions declared with
attribute warn_unused_result. Start to fix these.
Jeremy.

15 years agoldb: Include tevent.h rather than events.h.
Jelmer Vernooij [Tue, 23 Dec 2008 03:21:35 +0000 (04:21 +0100)]
ldb: Include tevent.h rather than events.h.

15 years agoldb: Fix linking against tevent library (rather than events)
Jelmer Vernooij [Tue, 23 Dec 2008 03:18:31 +0000 (04:18 +0100)]
ldb: Fix linking against tevent library (rather than events)
replace: Fix copyright for dlfcn.c.

15 years agopytalloc: Add some comments, use talloc object location in repr rather
Jelmer Vernooij [Tue, 23 Dec 2008 03:06:21 +0000 (04:06 +0100)]
pytalloc: Add some comments, use talloc object location in repr rather
than python object location.

15 years agopython/tevent: Remove use of pytalloc.h.
Jelmer Vernooij [Tue, 23 Dec 2008 02:24:39 +0000 (03:24 +0100)]
python/tevent: Remove use of pytalloc.h.

15 years agopidl: Fix typelist test after addition of type origin tracking.
Jelmer Vernooij [Tue, 23 Dec 2008 02:17:01 +0000 (03:17 +0100)]
pidl: Fix typelist test after addition of type origin tracking.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Tue, 23 Dec 2008 01:06:05 +0000 (02:06 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agomerged build: Remove shared-build related variables, as they are already set up corre...
Jelmer Vernooij [Tue, 23 Dec 2008 01:04:50 +0000 (02:04 +0100)]
merged build: Remove shared-build related variables, as they are already set up correctly by the main configure.

15 years agoUse make variable for Samba 4 shared library output directory.
Jelmer Vernooij [Tue, 23 Dec 2008 00:53:38 +0000 (01:53 +0100)]
Use make variable for Samba 4 shared library output directory.

15 years agoFix prefixing swig library directory with prefix.
Jelmer Vernooij [Tue, 23 Dec 2008 00:40:08 +0000 (01:40 +0100)]
Fix prefixing swig library directory with prefix.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Tue, 23 Dec 2008 00:03:49 +0000 (01:03 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agoUse relative paths for Python modules. Seems to workaround a strange bug in
Jelmer Vernooij [Mon, 22 Dec 2008 23:59:39 +0000 (00:59 +0100)]
Use relative paths for Python modules. Seems to workaround a strange bug in
GNU make.

15 years agos4: Fix a getaddrinfo/EAI_NODATA portability issue
Tim Prouty [Mon, 22 Dec 2008 23:04:10 +0000 (15:04 -0800)]
s4: Fix a getaddrinfo/EAI_NODATA portability issue

FreeBSD has explicitly deprecated EAI_NODATA as a return value from
getaddrinfo by removing it from netdb.h.  On systems that don't have
EAI_NODATA, EAI_NONAME should be used instead.

15 years agoFix installation of standalone tevent Python module.
Jelmer Vernooij [Mon, 22 Dec 2008 22:55:01 +0000 (23:55 +0100)]
Fix installation of standalone tevent Python module.

15 years agoFix standalone build of tdb python module, update ignores for standalone tdb.
Jelmer Vernooij [Mon, 22 Dec 2008 22:39:30 +0000 (23:39 +0100)]
Fix standalone build of tdb python module, update ignores for standalone tdb.

15 years agoForce symbolic links for shared library sonames to be created,
Jelmer Vernooij [Mon, 22 Dec 2008 22:36:48 +0000 (23:36 +0100)]
Force symbolic links for shared library sonames to be created,
as they are required at run-time.

15 years agoFix two remaining missing symbols in smbtorture4.
Jelmer Vernooij [Mon, 22 Dec 2008 22:00:10 +0000 (23:00 +0100)]
Fix two remaining missing symbols in smbtorture4.

15 years agoFix build of the Python bindings now that SWIG is gone.
Jelmer Vernooij [Mon, 22 Dec 2008 21:08:01 +0000 (22:08 +0100)]
Fix build of the Python bindings now that SWIG is gone.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Mon, 22 Dec 2008 20:15:59 +0000 (21:15 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agoFix missing symbols issues when building with shared libraries.
Jelmer Vernooij [Mon, 22 Dec 2008 20:03:09 +0000 (21:03 +0100)]
Fix missing symbols issues when building with shared libraries.

15 years agoMake it clearer when RAW-STREAMS is failing (don't always print names).
Jeremy Allison [Mon, 22 Dec 2008 19:58:38 +0000 (11:58 -0800)]
Make it clearer when RAW-STREAMS is failing (don't always print names).
Jeremy.

15 years agoFix "allow trusted domain" so it disables trusted domains.
Gerald (Jerry) Carter [Mon, 22 Dec 2008 19:07:29 +0000 (11:07 -0800)]
Fix "allow trusted domain" so it disables trusted domains.

15 years agoFix function name in error message when failing to load module.
Jelmer Vernooij [Mon, 22 Dec 2008 18:17:13 +0000 (19:17 +0100)]
Fix function name in error message when failing to load module.

15 years agoSet right LD_LIBRARY_PATH for finding Samba4's libraries.
Jelmer Vernooij [Mon, 22 Dec 2008 18:13:28 +0000 (19:13 +0100)]
Set right LD_LIBRARY_PATH for finding Samba4's libraries.

15 years agoBuild samba 4 plugins in merged build.
Jelmer Vernooij [Mon, 22 Dec 2008 18:06:17 +0000 (19:06 +0100)]
Build samba 4 plugins in merged build.

15 years agos4: Fix subsystem for various services in samba daemon.
Jelmer Vernooij [Mon, 22 Dec 2008 18:04:55 +0000 (19:04 +0100)]
s4: Fix subsystem for various services in samba daemon.

15 years agoFix segfault when there are no tests registered.
Jelmer Vernooij [Mon, 22 Dec 2008 17:53:19 +0000 (18:53 +0100)]
Fix segfault when there are no tests registered.

15 years agomerged build: Build Samba 4 using shared libraries internally, when
Jelmer Vernooij [Mon, 22 Dec 2008 17:14:59 +0000 (18:14 +0100)]
merged build: Build Samba 4 using shared libraries internally, when
we're also doing so for Samba 3. This saves a significant amount of disk
space.

15 years agos4: Always link in auth, as some of the core infrastructure depends on it.
Jelmer Vernooij [Mon, 22 Dec 2008 17:12:22 +0000 (18:12 +0100)]
s4: Always link in auth, as some of the core infrastructure depends on it.

15 years agoNever build tevent modules as shared objects.
Jelmer Vernooij [Mon, 22 Dec 2008 16:56:28 +0000 (17:56 +0100)]
Never build tevent modules as shared objects.

15 years agoRemove unused Samba4-specific init functions for libtevent.
Jelmer Vernooij [Mon, 22 Dec 2008 16:43:46 +0000 (17:43 +0100)]
Remove unused Samba4-specific init functions for libtevent.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Mon, 22 Dec 2008 15:33:06 +0000 (16:33 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agomerged build: Remove SWIG checks, set flags for shared Samba 4 build.
Jelmer Vernooij [Mon, 22 Dec 2008 15:30:53 +0000 (16:30 +0100)]
merged build: Remove SWIG checks, set flags for shared Samba 4 build.

15 years agoRaise proper exceptions when lp file can't be found, be a
Jelmer Vernooij [Mon, 22 Dec 2008 05:34:18 +0000 (06:34 +0100)]
Raise proper exceptions when lp file can't be found, be a
bit less strict when no file was specified.

15 years agopidl/python: Factor out connect code rather than duplicating it in each
Jelmer Vernooij [Mon, 22 Dec 2008 03:56:41 +0000 (04:56 +0100)]
pidl/python: Factor out connect code rather than duplicating it in each
Python module.

15 years agoAdd header for pyparam.
Jelmer Vernooij [Mon, 22 Dec 2008 03:38:57 +0000 (04:38 +0100)]
Add header for pyparam.

15 years agoRemove includes of py_*.h, which are no longer generated.
Jelmer Vernooij [Mon, 22 Dec 2008 03:21:20 +0000 (04:21 +0100)]
Remove includes of py_*.h, which are no longer generated.

15 years agoRemove unnecessary dependencies between Python modules.
Jelmer Vernooij [Mon, 22 Dec 2008 03:13:16 +0000 (04:13 +0100)]
Remove unnecessary dependencies between Python modules.

15 years agoUse consistent names for dcerpc python modules; fixes messaging test.
Jelmer Vernooij [Mon, 22 Dec 2008 03:03:55 +0000 (04:03 +0100)]
Use consistent names for dcerpc python modules; fixes messaging test.

15 years agopidl/python: Skip unknown types, rather than dieing.
Jelmer Vernooij [Mon, 22 Dec 2008 02:22:28 +0000 (03:22 +0100)]
pidl/python: Skip unknown types, rather than dieing.

15 years agopidl: Allow location argument to warning() and error() to be undef, in case it is
Jelmer Vernooij [Mon, 22 Dec 2008 02:21:10 +0000 (03:21 +0100)]
pidl: Allow location argument to warning() and error() to be undef, in case it is
not known.

15 years agoImport types from other Python mechanisms using the Python import mechanism, to ensur...
Jelmer Vernooij [Mon, 22 Dec 2008 00:51:38 +0000 (01:51 +0100)]
Import types from other Python mechanisms using the Python import mechanism, to ensure they are initialized.

15 years agoFix comparison in tests now that we use __cmp__ rather than __eq__.
Jelmer Vernooij [Sun, 21 Dec 2008 22:24:36 +0000 (23:24 +0100)]
Fix comparison in tests now that we use __cmp__ rather than __eq__.

15 years agoFix more tests, improve repr() functions for various Python types.
Jelmer Vernooij [Sun, 21 Dec 2008 22:05:35 +0000 (23:05 +0100)]
Fix more tests, improve repr() functions for various Python types.