2005-07-20 02:35  tag RELEASE_0_4_3

2005-07-20 02:35  warnes

	* doc/manual.texi: Update documentation to reflect new
	  'VECTOR_CONVERSION' mode.

2005-07-20 01:38  warnes

	* NEWS, rpy.py, rpy_tools.py, setup.py, src/rpymodule.c: Complete
	  work for version-specific shared libraries.

2005-07-20 01:29  warnes

	* tests/logit.r: Add logit.r required by test_lapack_load.py.

2005-07-19 16:40  warnes

	* tests/test_lapack_load.py: Add test that we can load the Rlapack
	  library.

2005-07-19 16:39  warnes

	* NEWS, rpy.py, src/RPy.h, src/rpymodule.c, tests/test_array.py,
	  tests/test_modes.py, tests/test_numeric.py, tests/test_robj.py,
	  tests/test_topy.py, tests/test_tor.py, tests/test_util.py: - Add
	  support for python boolean objects.  R Logicals are now
	  converted to/from Python booleans.

	  - New translation mode 'VECTOR_CONVERSION', which differs from
	  'BASIC_CONVERSION' in that R objects are always returned as
	  vectors   even if length 1.

2005-07-15 14:44  warnes

	* src/RPy.h: Changes to avoid redefinition errors on Win32.

2005-07-15 13:36  warnes

	* src/rpymodule.c: - Fix error (potential segfault!) when handling
	  conversion of   factor objects contining missing values

2005-07-15 13:28  warnes

	* tests/test_topy.py: Minor whitespace reformatting.

2005-07-15 13:28  warnes

	* rpy.py: - Fix bug in R.__call__ that could cause problems when
	  the 'r'   object is not present.

2005-07-15 13:23  warnes

	* tests/test_topy.py: Add tests for NA values.

2005-07-15 11:00  warnes

	* rpy.py: - The R integer 'NA' value is now accessible as the 'NA'
	  attribute of the   Python 'r' object.  - The R floating point
	  'NA' value is now accessible as the 'NAN'   attribute of the
	  Python 'r' object.

2005-07-15 03:07  warnes

	* setup.py: Explicitly link to libRlapack to ensure this library is
	  found at runtime.  (Oddly simply adding -R<path> doesn't do the
	  trick.)

2005-07-15 02:15  warnes

	* doc/Makefile: Explicitly call tex / makeinfo / pdflatex twice to
	  ensure that toc/index are properly built.

2005-07-15 02:06  warnes

	* setup.py: - Display R path and version - Append version string
	  ('2010') to shared library/dll name so that	multiple versions
	  can colocate.  This should ease packaging for windows.

2005-07-15 01:35  warnes

	* rpy.py: Add code to try loading R-version specific _rpy module on
	  Win32.  This should make it easier to support multiple R versions
	  with a single distributed package.

2005-07-14 15:14  warnes

	* rpy.py: - On Windows, always look at the registry to see where to
	  find the R DLL.  This should avoid the nasty popup error
	  message   when the DLL isn't on the path.  Patch by Peter
	  (maubp@users.sourceforge.net)

2005-07-14 14:55  warnes

	* src/rpymodule.c: Fixes  bug "[ 1238226 ] rpymodule.c needs
	  updating for R 2.1.1 or later" (win32-specific)

2005-07-14 14:46  warnes

	* INSTALL.UNIX, INSTALL.WINDOWS, README: Move installation
	  instructions to separate files.

2005-07-14 13:45  warnes

	* tests/: test_cleanup.py, testall.py: Fix typo in test_cleanup,
	  remove special case for test_cleanup in testall.py

2005-07-14 13:43  warnes

	* rpy.py, src/rpymodule.c, tests/test_cleanup.py,
	  tests/test_init.py, tests/testscript_cleanup.py: - Move cleanup
	  call to python finalization rather than R object deletion.  -
	  Split out testing of R init function from cleanup.  - Improve
	  cleanup testing by using a separate python script.

2005-07-14 02:37  warnes

	* NEWS, rpy.py, rpy_io.py, rpy_version.py, setup.py, src/RPy.h,
	  src/io.c, src/rpymodule.c, tests/README, tests/test_cleanup.py,
	  tests/test_io.py, tests/testall.py:
	  New features

	    - R source headers no longer needed, and are no longer included
	  in the source package

	    - The R interpreter is propely shutdown on python exit or
	  deletion
	      all references.  This ensures that all temporary directories
	  and
	      files are removed

	  Bug fixes:

	    - Fix build error for R 2.0.0+ on Mac OSX ('darwin')

	    - Previous versions of rpy have permitted multiple copies of
	  the R
	      interpreter wrapper to be instantiated (via "newR = rpy.R()"
	  ).
	      However R's design imposes a limit of one interpreter per
	  python
	      process.	To avoid confusion on this point, attempts to
	      instantate more than one R interpreter object will now
	  generate
	      RuntimeError exceptions.

	    - r.help() now works as expected by users.

	  Behind the scenes:

	    - Some work has been done "under the hood" to allow an R
	      interpreter to be shut down and then started up again.  This
	  is
	      *not* currently working.

2005-01-04 10:12  tag RELEASE_0_4_2

2005-01-04 10:12  warnes

	* src/rpymodule.c:

	  - Remove 'statichere' prefix of Robj_Type definition to resolve
	  build   error under gcc 4.0.	('staticforward' and 'statichere'
	  are used for	 defining and referencing static forward
	  definitions,	 respectively. Here, however, the definition of
	  Robj_Type is the   first and only definitition.)

2004-12-22 19:13  tag RELEASE_0_4_1

2004-12-22 19:13  warnes

	* TODO: Add a couple of items, enhance format.

2004-12-22 19:01  warnes

	* rpy.py, rpy_version.py, setup.py: - Provide version of
	  getstatuscommands for windows.  Other trivial changes.

2004-11-08 13:03  warnes

	* rpy_version.py: Make that version 0.4.0!

2004-11-08 13:02  warnes

	* NEWS: Update for 0.4.0

2004-11-08 12:59  warnes

	* rpy_version.py: Update version number for 0.4.0.

2004-11-08 12:58  warnes

	* README, setup.py: We now attempt to bundle the R header files
	  needed to compile rpy.

2004-11-08 10:43  warnes

	* setup.py: One more change for R 2.0.0:  libR.so now lives in
	  $RHOME/lib rather than $RHOME/bin.

2004-11-01 19:27  tag RELEASE_0_3_6

2004-11-01 19:27  nj7w

	* rpy_version.py: Update version number

2004-11-01 19:09  nj7w

	* NEWS: Update for release 0.3.6.

2004-11-01 18:56  nj7w

	* README, setup.py: Improve Windows installation instructions & fix
	  minor build problem.

2004-10-22 21:55  warnes

	* rpy_version.py, src/RPy.h, src/rpymodule.c: Second attempt to get
	  support for R 2.0.0 working.

2004-10-22 09:06  warnes

	* src/: R_eval.c, rpymodule.c: Commit changes for compatibility
	  with (bug? in) R 2.0.0

2004-10-08 11:52  warnes

	* src/: RPy.h, rpymodule.c: - Remove some redundant includes from
	  rpymodule.c - Add 'getRHOME' function (not yet used).

2004-09-13 17:27  warnes

	* setup.py: Fix new typo.

2004-09-13 17:22  warnes

	* README, setup.py, src/rpymodule.c: - Changes to fix compilation
	  under Windows.  - Fix for typo in rpymodule.c

2004-08-23 17:18  warnes

	* doc/manual.texi: Fixed typos.

2004-06-14 16:59  warnes

	* src/RPy.h: Add Startup.h to unix build as well.

2004-06-14 16:56  warnes

	* src/rpymodule.c: Replace Python comment character with C comment
	  character. grrr.

2004-06-14 16:08  warnes

	* setup.py, src/rpymodule.c: Fix segfault on run due to strangeness
	  in quoting C DEFINES at build time.

2004-04-22 14:42  warnes

	* setup.py: Add configuration case for OSF to resolve linker
	  problem reported by Andrew Hill <ahill@wyeth.com>.

2004-02-27 12:05  warnes

	* rpy_io.py: Undelete.

2004-02-26 23:48  warnes

	* undelete.csh: Remove extraneous file.

2004-02-26 23:45  warnes

	* COPYING, MANIFEST.in, README, TODO, rpy.py, rpy_io.py,
	  rpy_version.py, setup.py, debian/changelog, debian/control,
	  debian/copyright, debian/rules, doc/Makefile, doc/README,
	  doc/defs.texi, doc/manual.texi, examples/README,
	  examples/animation.py, examples/chisquared.py,
	  examples/faithful.dat, examples/faithful.py,
	  examples/useful/dataframe.py, examples/useful/erobj.py,
	  src/RPy.h, src/R_eval.c, src/io.c, src/robjobject.h,
	  src/rpymodule.c, src/setenv.c, src/setenv.h, tests/README,
	  tests/table.txt, tests/test_array.py, tests/test_boolean.py,
	  tests/test_io.py, tests/test_modes.py, tests/test_numeric.py,
	  tests/test_robj.py, tests/test_sigint.py, tests/test_topy.py,
	  tests/test_tor.py, tests/test_util.py, tests/testall.py: - Remove
	  windows line endings from files.  - Fix incorrect code for darwin
	  build include in the windows changes.  - It appears that PRE_2_2
	  needs to be set for 2.3 as well as 2.1 for   rpy to pass its unit
	  tests.  Does it need to be set for 2.2 as well?   (I don't have a
	  2.2 hand to test with.)

2004-02-26 22:32  warnes

	* NEWS: Correct NEWS file for 0.3.5.

2004-02-26 22:06  warnes

	* src/io.c.bak, src/rpymodule.c.bak, rpy_version.pyc, README.sav:
	  Delete a few files accidentaly 'undeleted'

2004-02-26 21:59  warnes

	* rpy_version.pyc, src/io.c.bak, src/rpymodule.c.bak: Undelete File

2004-02-26 21:55  warnes

	* examples/faithful.dat, examples/faithful.py,
	  examples/useful/dataframe.py, examples/useful/erobj.py,
	  src/RPy.h, src/R_eval.c, src/io.c, src/robjobject.h,
	  src/rpymodule.c, src/setenv.c, src/setenv.h, tests/README,
	  tests/table.txt, tests/test_array.py, tests/test_boolean.py,
	  tests/test_io.py, tests/test_modes.py, tests/test_numeric.py,
	  tests/test_robj.py, tests/test_sigint.py, tests/test_topy.py,
	  tests/test_tor.py, tests/test_util.py, tests/testall.py: Undelete
	  file

2004-02-26 21:52  warnes

	* COPYING, MANIFEST.in, NEWS, README, TODO, rpy.py, rpy_io.py,
	  rpy_version.py, setup.py, debian/changelog, debian/control,
	  debian/copyright, debian/rules, doc/Makefile, doc/README,
	  doc/defs.texi, doc/manual.texi, examples/README,
	  examples/animation.py, examples/chisquared.py: Undelete file

2004-02-26 21:41  tag RELEASE_0_3_5

2004-02-26 21:41  warnes

	* .cvsignore, COPYING, MANIFEST.in, NEWS, README, README.sav, TODO,
	  rpy.py, rpy_io.py, rpy_version.py, setup.py, undelete.csh,
	  debian/changelog, debian/control, debian/copyright, debian/rules,
	  doc/Makefile, doc/README, doc/defs.texi, doc/manual.texi,
	  examples/README, examples/animation.py, examples/chisquared.py,
	  examples/faithful.dat, examples/faithful.py,
	  examples/useful/dataframe.py, examples/useful/erobj.py,
	  src/RPy.h, src/R_eval.c, src/io.c, src/robjobject.h,
	  src/rpymodule.c, src/setenv.c, src/setenv.h, tests/.cvsignore,
	  tests/README, tests/table.txt, tests/test_array.py,
	  tests/test_boolean.py, tests/test_io.py, tests/test_modes.py,
	  tests/test_numeric.py, tests/test_robj.py, tests/test_sigint.py,
	  tests/test_topy.py, tests/test_tor.py, tests/test_util.py,
	  tests/testall.py: Import Windows Changes by Matjak Kukar

2004-02-26 21:41  warnes

	* README.sav, undelete.csh: Initial revision

2004-02-26 21:08  warnes

	* README: Undelete.

2004-02-19 17:13  warnes

	* README:
	  Add note that all Windows specific code has been integrated into
	  the main rpy tree.

2004-02-19 17:12  warnes

	* .cvsignore, COPYING, MANIFEST.in, NEWS, README, TODO, rpy.py,
	  rpy_io.py, rpy_version.py, setup.py, debian/changelog,
	  debian/control, debian/copyright, debian/rules, doc/Makefile,
	  doc/README, doc/defs.texi, doc/manual.texi, src/RPy.h,
	  src/R_eval.c, src/io.c, src/robjobject.h, src/rpymodule.c,
	  src/setenv.c, src/setenv.h, tests/.cvsignore, tests/README,
	  tests/table.txt, tests/test_array.py, tests/test_boolean.py,
	  tests/test_io.py, tests/test_modes.py, tests/test_numeric.py,
	  tests/test_robj.py, tests/test_sigint.py, tests/test_topy.py,
	  tests/test_tor.py, tests/test_util.py, tests/testall.py:
	  The Windows code is now integrated into the main RPy tree, so
	  these files are no longer necessary.

2004-02-19 13:10  tag accidental_delete

2004-02-19 13:10  warnes

	* NEWS: Updated NEWS entries for 0.3.5.

2004-02-17 22:02  warnes

	* rpy_version.py: Update version number for 0.3.5 release.

2004-02-17 22:01  warnes

	* MANIFEST.in: Exclude .tgz and .tar.gz files from being included
	  in the distributed packages.

2004-02-17 13:48  warnes

	* src/: R_eval.c, rpymodule.c: - Fix defintions of symbols used by
	  other modules.  These were   incorrectly marked 'extern'.

2004-02-17 13:45  warnes

	* tests/test_sigint.py: Force win32 to pass test_signint test.

2004-02-17 13:15  warnes

	* setup.py: Jan de Leeuw recommends against -Xlinker -m, and
	  indicates that -dynamic is the default.

2004-02-17 10:37  warnes

	* setup.py: Add linker flags that should enable rpy to build on Mac
	  OS X (darwin).

2004-02-12 12:12  warnes

	* rpy_version.py, setup.py: More changes to allow building on Mac
	  OSX.

2004-02-12 12:11  warnes

	* NEWS: Belated checkin of changes for RPy 0.3.4.

2004-02-11 21:37  warnes

	* src/: RPy.h, R_eval.c, rpymodule.c:
	  - Mark all variable definitions in headers 'extern', and place
	  actual   definitions in the appropriate source file.	This should
	  permit   compilation on Max OSX.

2004-02-10 15:57  warnes

	* setup.py: Patch to add build info for Mac OSX, submitted by
	  Christopher Fonnesbeck <chris@fonnesbeck.org>.  Its not yet quite
	  right, but a step in the right direction.

2004-02-04 16:26  warnes

	* rpy.py, setup.py: Finish renaming io.py to rpy_io.py.

2004-02-04 16:20  warnes

	* rpy.py: Fix crash on startup under win32 due to a typo that
	  caused the wrong event-loop code to be executed..

2004-02-04 16:10  warnes

	* io.py, rpy_io.py: Renamed io.py to rpy_io.py to prevent conflict
	  with a file in the python-stats package.

2004-02-04 16:06  warnes

	* debian/: changelog, control, copyright, rules: Add debian
	  packaging files provided by Dirk Eddelbuettel.

2004-01-21 01:25  tag RELEASE_0_3_4

2004-01-21 01:25  warnes

	* MANIFEST.in: - Add a couple of trash file types to be excluded
	  from build packages

2004-01-21 01:18  warnes

	* MANIFEST.in: Make sure that the dist/ subdirectory doesn't get
	  included in the source packages, otherwise we get HUGE packages
	  because they include all previous packages.

2004-01-21 00:59  warnes

	* tests/test_robj.py: Fix test of lcall.

2004-01-21 00:53  warnes

	* rpy_version.py: - Update version number for release.

2004-01-21 00:50  warnes

	* src/RPy.h: Undo last change: remove #undef because it caused
	  compile faulures in older python versions.

2004-01-21 00:42  warnes

	* tests/: test_array.py, test_boolean.py, test_io.py,
	  test_modes.py, test_numeric.py, test_robj.py, test_sigint.py,
	  test_topy.py, test_tor.py, test_util.py: Modify tests so that
	  they operate on the local rpy rather than the system installed
	  copy.  This makes it a lot easier to test changes.

2004-01-21 00:40  warnes

	* src/RPy.h: Avoid warning message by undefining _FILE_OFFSET_BITS
	  to avoid conflict between system defintion and python's
	  definition.

2004-01-21 00:34  warnes

	* setup.py: Added runtime_library_dirs so that the rpy shared
	  library _rpy.so includes the ncessary path to the R shared
	  library Rlib.so. This ensures that Rlib.so will be found even if
	  it is not in LD_LIBRARY_PATH.

2004-01-16 01:43  tag RELEASE_0_3_3

2004-01-16 01:43  warnes

	* NEWS, README, TODO: Update text documentation files.

2004-01-16 01:43  warnes

	* doc/Makefile:
	  Expand shell alternative patterns "foo.{bar,baz}" to "foo.bar
	  foo.baz" because some shells used by make don't handle the former
	  properly (eg, sh on Solaris 9).

	  Add ignore return value flag (prepend '-') to "rm" commands,
	  since absence of the file to be deleted is not a problem.

2004-01-16 01:38  warnes

	* doc/manual.texi: [no log message]

2004-01-16 01:33  warnes

	* tests/test_robj.py: Improve documentation for lcall.	Modify unit
	  test for lcall to be simpler.

2004-01-16 00:06  warnes

	* doc/manual.texi: Fix typos in manual.texi.

2004-01-16 00:04  warnes

	* doc/manual.texi: Add documentation of lcall method.

2004-01-16 00:00  warnes

	* src/rpymodule.c, tests/test_robj.py: Integrate patch #720222: new
	  RObj method 'lcall', which provides an 'lcall' method for calling
	  objects with a list of (name,value) arguments.  This allows the
	  programmer to work around Python's use of *unordered*
	  dictionaries for named arguments.

2004-01-15 17:55  warnes

	* rpy_version.py, src/R_eval.c, src/rpymodule.c, src/setenv.c:
	  Minor changes for release of version 3.3.

2004-01-15 17:54  warnes

	* setup.py:
	  Add quotes to allow for special characters in RHOME path.

2004-01-15 17:51  warnes

	* tests/test_sigint.py: Rewrite to put signal sender code into a
	  function.  Works now ?!

2004-01-15 17:45  warnes

	* tests/test_modes.py:
	  Fix error in unit test.

2004-01-15 13:14  warnes

	* README, doc/Makefile:

	  Added the creating of manual_html.tgz for the web site.

2004-01-08 11:56  warnes

	* rpy_version.py, src/rpymodule.c:
	  Fix bug under Unix due to Win32 changes.

2004-01-08 11:18  warnes

	* README, rpy.py, rpy_version.py, setup.py, src/R_eval.c, src/io.c,
	  src/robjobject.h, src/rpymodule.c, src/setenv.c, src/setenv.h:
	  - Changes to work with R 1.8.X - First attempt to integrate
	  Windows changes into Unix source tree - Additional information
	  for building under windows

2003-03-17 18:46  wall_m

	* src/rpymodule.c: Fixed a bug with the R's gc.  It solves the
	  problems with large chunks of data.

2003-02-15 15:05  tag RELEASE_0_3_1-A

2003-02-15 15:05  wall_m

	* README: Fixed wrong version

2003-02-15 14:52  tag RELEASE_0_3_1

2003-02-15 14:52  wall_m

	* NEWS: Updated

2003-02-15 14:23  tag RELEASE_0_3

2003-02-15 14:23  wall_m

	* src/rpymodule.c: Changed the sync mechanism to a lock.

2003-02-15 14:19  wall_m

	* doc/manual.texi: Some explanations about r('...') and r_events.

2003-02-15 14:18  wall_m

	* setup.py: Using the rpy_version module.

2003-02-15 14:17  wall_m

	* VERSION, rpy_version.py: Changed VERSION for a module, easier to
	  import.

2003-02-15 14:16  wall_m

	* rpy.py: Now, using a lock to sync with R_eval. A lot faster.

2003-02-15 14:15  wall_m

	* README: Added Kelley's contrib and fixed the minimum R version.

2003-02-10 18:32  wall_m

	* src/io.c: * Fixed thread problems with Python i/o callbacks.	*
	  Enabled the event loop when reading input.

2003-02-10 18:29  wall_m

	* src/RPy.h: Added declarations.

2003-02-10 18:17  wall_m

	* MANIFEST.in: Some fixes.

2003-02-10 18:10  wall_m

	* setup.py: When building a source distro, substitute $VERSION$
	  with the VERSION file content.

2003-02-10 18:08  wall_m

	* src/R_eval.c: * Events are disables before entering R and enabled
	  after leaving R.  * If the event loop is stopped, the
	  enable/disable doesn't happen, which speed   up things a lot.  *
	  Fixed a bug in do_eval_expr (executing Python code after changing
	  the SIGINT   handler).

2003-02-10 17:52  wall_m

	* src/rpymodule.c: * Fixed a bug about executing Python code with a
	  wrong SIGINT handler, in   do_eval_expr.  * Added handling of the
	  event loop before and after the evaluation of R   expresions.  *
	  Speed up in the evaluation of R expresion when the event loop is
	  off.	* Disable the event loop when R is not interactive.  *
	  Imported the rpy namespace, for easier access to the Python
	  functions.

2003-02-10 17:46  wall_m

	* rpy.py: Fixed the start/stop_r_eventloop problems.

2003-02-10 16:40  wall_m

	* README: Added win32all URL.

2002-11-19 15:43  wall_m

	* MANIFEST, MANIFEST.in, NEWS, README, TODO, VERSION, io.py,
	  rpy.py, setup.py, doc/README, doc/manual.texi, src/RPy.h,
	  src/R_eval.c, src/io.c, src/robjobject.h, src/rpymodule.c,
	  src/setenv.c, src/setenv.h, tests/test_boolean.py,
	  tests/test_io.py, tests/test_sigint.py, tests/test_topy.py:
	  Release 0.3, see the release notes or the NEWS file for changes
	  since 0.2.  Modified Files:	 NEWS README TODO VERSION rpy.py
	  setup.py doc/README	  doc/manual.texi src/RPy.h src/R_eval.c
	  src/robjobject.h	   src/rpymodule.c tests/test_topy.py Added
	  Files:	 MANIFEST.in io.py src/io.c src/setenv.c
	  src/setenv.h	  tests/test_boolean.py tests/test_io.py
	  tests/test_sigint.py Removed Files:	   MANIFEST

2002-04-12 12:20  wall_m

	* NEWS, VERSION, tests/.cvsignore: Added Files: NEWS VERSION
	  tests/.cvsignore

2002-04-12 12:18  wall_m

	* MANIFEST, README, RPy.h, R_eval.c, TODO, USING, robjobject.h,
	  rpy.py, rpymodule.c, setup.py, test-array.py, test-numeric.py,
	  test.py, doc/Makefile, doc/README, doc/defs.texi,
	  doc/manual.texi, examples/README, examples/animation.py,
	  examples/chisquared.py, examples/faithful.dat,
	  examples/faithful.py, examples/useful/dataframe.py,
	  examples/useful/erobj.py, src/RPy.h, src/R_eval.c,
	  src/robjobject.h, src/rpymodule.c, tests/README, tests/table.txt,
	  tests/test_array.py, tests/test_modes.py, tests/test_numeric.py,
	  tests/test_robj.py, tests/test_topy.py, tests/test_tor.py,
	  tests/test_util.py, tests/testall.py: Big changes and
	  reorganization. Due to being working in my own repository,
	  history is not available.

2002-03-18 13:02  wall_m

	* test-array.py, test-numeric.py: Fixed nested_scopes for version
	  2.1

2002-03-18 12:59  wall_m

	* rpymodule.c: Fixed a C function call which is not in the 2.1 API

2002-03-18 12:21  wall_m

	* rpymodule.c: Lot of changes.

	  * Added conversion from/to Numeric when available * Fixed the
	  conversion of data frames * Added the conversion of R arrays
	  from/to list of lists of ... in the	case when Numeric is not
	  available

2002-03-18 09:03  wall_m

	* rpy.py, rpymodule.c: Import Numeric when available Fixed a bug in
	  conversion of names.

2002-03-18 09:01  wall_m

	* setup.py: Added the detection of Numeric.

2002-03-18 08:58  wall_m

	* USING: Fixed minor typo.

2002-03-18 08:53  wall_m

	* RPy.h: Added the include of Numeric header when available.  Added
	  the declaration of Rf_initEmbeddedR.

2002-03-18 08:35  wall_m

	* robjobject.h, test-array.py, test-numeric.py, test.py: Added
	  Files: robjobject.h test-array.py test-numeric.py test.py

2002-03-13 13:38  wall_m

	* rpymodule.c: * Fixed several important bugs.

	    o Added a list for saving anonymous R objects
	    o Added several PROTECT's which were missing
	    o Fixed a bug related to signals that, when catch by R, makes
	  Python seg
	      fault

2002-03-08 22:01  tag start

2002-03-08 22:01  wall_m

	* .cvsignore, COPYING, MANIFEST, README, RPy.h, R_eval.c, TODO,
	  USING, rpy.py, rpymodule.c, setup.py: * Imported sources

2002-03-08 22:01  wall_m

	* .cvsignore, COPYING, MANIFEST, README, RPy.h, R_eval.c, TODO,
	  USING, rpy.py, rpymodule.c, setup.py: Initial revision

