[Python-modules-commits] [python-jpype] 03/18: Updated version 0.6.2 from 'upstream/0.6.2'

Takaki Taniguchi takaki at moszumanska.debian.org
Tue Jul 4 09:40:23 UTC 2017


This is an automated email from the git hooks/post-receive script.

takaki pushed a commit to branch master
in repository python-jpype.

commit 73dee1d6ac27ee92487c23590bbf92fe5518d4f5
Merge: 2ce2d0e cdc58e7
Author: TANIGUCHI Takaki <takaki at debian.org>
Date:   Thu Jun 29 18:17:36 2017 +0900

    Updated version 0.6.2 from 'upstream/0.6.2'
    
    with Debian dir d9898597e5db970730eddb56f44c93ab82aae4db

 .bumpversion.cfg                                   |   16 +
 .gitignore                                         |   50 +
 .travis.yml                                        |   45 +
 AUTHORS.rst                                        |   23 +
 LICENSE                                            |  167 +++
 MANIFEST.in                                        |    7 +
 PKG-INFO                                           |   10 -
 README-LINUX.TXT                                   |   13 -
 README.rst                                         |   18 +
 README.txt                                         |   22 -
 appveyor.yml                                       |   52 +
 appveyor/install.ps1                               |   89 ++
 appveyor/runTestsuite.ps1                          |   45 +
 appveyor/run_with_env.cmd                          |   51 +
 dev-requirements.txt                               |    3 +
 doc/CHANGELOG.rst                                  |  114 ++
 doc/CHANGELOG.rst.orig                             |  118 ++
 doc/Makefile                                       |  177 +++
 doc/conf.py                                        |  269 +++++
 doc/index.rst                                      |   27 +
 doc/install.rst                                    |   78 ++
 doc/make.bat                                       |  242 ++++
 doc/userguide.rst                                  |  742 ++++++++++++
 examples/jms/testJpypePublisher.py                 |    8 +-
 examples/jms/testJpypeSubscriber.py                |    8 +-
 examples/linux/findjvm.py                          |    2 +-
 examples/rmi.py                                    |    4 +-
 {src/python/jpype => jpype}/JClassUtil.py          |   10 +-
 {src/python/jpype => jpype}/__init__.py            |   36 +-
 {src/python/jpype => jpype}/_core.py               |  253 +++--
 jpype/_darwin.py                                   |   72 ++
 {src/python/jpype => jpype}/_gui.py                |   38 +-
 jpype/_jarray.py                                   |  194 ++++
 jpype/_jclass.py                                   |  209 ++++
 jpype/_jcollection.py                              |  286 +++++
 jpype/_jexception.py                               |   74 ++
 .../jpype/_refdaemon.py => jpype/_jobject.py       |   29 +-
 {src/python/jpype => jpype}/_jpackage.py           |   53 +-
 jpype/_jproxy.py                                   |   71 ++
 jpype/_jvmfinder.py                                |  167 +++
 {src/python/jpype => jpype}/_jwrapper.py           |   88 +-
 jpype/_linux.py                                    |   64 ++
 jpype/_properties.py                               |   82 ++
 {src/python/jpype => jpype}/_pykeywords.py         |   14 +-
 {src/python/jpype => jpype}/_refdaemon.py          |   16 +-
 jpype/_windows.py                                  |   65 ++
 {src/python/jpype => jpype}/awt/__init__.py        |    4 +-
 .../jpype => jpype}/awt/event/WindowAdapter.py     |   30 +-
 {src/python/jpypex => jpype/awt/event}/__init__.py |    6 +-
 {src/python/jpype => jpype}/nio.py                 |   23 +-
 {src/python/jpype => jpype}/reflect.py             |    4 +-
 {src/python/jpype/awt/event => jpypex}/__init__.py |    5 +-
 .../jpypex => jpypex}/swing/AbstractAction.py      |   65 +-
 {src/python/jpypex => jpypex}/swing/__init__.py    |    6 +-
 jpypex/swing/pyutils.py                            |   28 +
 {src/native => native}/common/include/jp_array.h   |   12 +-
 .../common/include/jp_arrayclass.h                 |    0
 {src/native => native}/common/include/jp_class.h   |   13 +-
 .../common/include/jp_classbase.h                  |    8 +-
 {src/native => native}/common/include/jp_env.h     |   61 +-
 {src/native => native}/common/include/jp_field.h   |    8 +-
 {src/native => native}/common/include/jp_hostenv.h |    6 +-
 .../common/include/jp_invocationhandler.h          |    0
 {src/native => native}/common/include/jp_javaenv.h |   19 +-
 .../common/include/jp_javaenv_autogen.h            |    8 +-
 native/common/include/jp_jniutil.h                 |  190 ++++
 {src/native => native}/common/include/jp_method.h  |   17 +-
 .../common/include/jp_methodoverload.h             |   32 +-
 {src/native => native}/common/include/jp_monitor.h |    0
 {src/native => native}/common/include/jp_object.h  |    6 +-
 .../common/include/jp_objectbase.h                 |    0
 .../common/include/jp_objecttypes.h                |   28 +-
 .../common/include/jp_platform_linux.h             |    8 +
 .../common/include/jp_platform_win32.h             |   10 +-
 .../common/include/jp_primitivetypes.h             |  126 ++-
 {src/native => native}/common/include/jp_proxy.h   |    2 +-
 .../common/include/jp_reference.h                  |    0
 .../common/include/jp_referencequeue.h             |    0
 {src/native => native}/common/include/jp_type.h    |   30 +-
 .../common/include/jp_typemanager.h                |   28 +-
 .../native => native}/common/include/jp_typename.h |   71 +-
 {src/native => native}/common/include/jp_utility.h |   36 +-
 {src/native => native}/common/include/jpype.h      |   50 +-
 {src/native => native}/common/jp_array.cpp         |   38 +-
 {src/native => native}/common/jp_arrayclass.cpp    |    2 +-
 {src/native => native}/common/jp_class.cpp         |  175 ++-
 {src/native => native}/common/jp_classbase.cpp     |    0
 {src/native => native}/common/jp_env.cpp           |   74 +-
 {src/native => native}/common/jp_field.cpp         |   13 +-
 .../common/jp_invocationhandler.cpp                |    0
 {src/native => native}/common/jp_javaenv.cpp       |   51 +-
 .../common/jp_javaenv_autogen.cpp                  |    8 +-
 {src/native => native}/common/jp_jniutil.cpp       |  493 ++++----
 {src/native => native}/common/jp_method.cpp        |  113 +-
 .../native => native}/common/jp_methodoverload.cpp |   74 +-
 {src/native => native}/common/jp_monitor.cpp       |    0
 {src/native => native}/common/jp_object.cpp        |    4 +-
 {src/native => native}/common/jp_objecttypes.cpp   |   52 +-
 .../native => native}/common/jp_platform_linux.cpp |    0
 .../native => native}/common/jp_platform_win32.cpp |    0
 .../native => native}/common/jp_primitivetypes.cpp |  337 +-----
 .../common/jp_primitivetypes_autogen.cpp           |  631 ++++++++---
 {src/native => native}/common/jp_proxy.cpp         |   49 +-
 {src/native => native}/common/jp_reference.cpp     |    0
 .../native => native}/common/jp_referencequeue.cpp |    0
 native/common/jp_typemanager.cpp                   |  176 +++
 native/common/jp_typename.cpp                      |  159 +++
 {src/native => native}/common/jp_voidtype.cpp      |    5 -
 native/jni_include/jni.h                           | 1191 ++++++++++++++++++++
 native/python/include/capsulethunk.h               |  140 +++
 .../python/include/jp_cocoatools.h                 |    0
 .../python/include/jp_runloopstopper.h             |    0
 native/python/include/jpype_memory_view.h          |   39 +
 native/python/include/jpype_python.h               |  115 ++
 {src/native => native}/python/include/py_class.h   |    3 +-
 {src/native => native}/python/include/py_field.h   |    0
 {src/native => native}/python/include/py_hostenv.h |   23 +-
 {src/native => native}/python/include/py_method.h  |    0
 {src/native => native}/python/include/py_monitor.h |    0
 {src/native => native}/python/include/pythonenv.h  |   61 +-
 native/python/jpype_javaarray.cpp                  |  256 +++++
 {src/native => native}/python/jpype_javaclass.cpp  |    0
 {src/native => native}/python/jpype_javanio.cpp    |    4 +-
 native/python/jpype_memory_view.c                  |  287 +++++
 {src/native => native}/python/jpype_module.cpp     |    4 +-
 {src/native => native}/python/jpype_python.cpp     |   45 +-
 {src/native => native}/python/py_class.cpp         |   43 +-
 {src/native => native}/python/py_field.cpp         |    9 +-
 {src/native => native}/python/py_hostenv.cpp       |   44 +-
 {src/native => native}/python/py_method.cpp        |   17 +-
 {src/native => native}/python/py_monitor.cpp       |    5 +-
 {src/native => native}/python/pythonenv.cpp        |  108 +-
 setup.py                                           |  311 +++--
 src/native/common/include/jp_jniutil.h             |  184 ---
 src/native/common/jp_typemanager.cpp               |  158 ---
 src/native/common/jp_typename.cpp                  |  180 ---
 src/native/python/include/jpype_python.h           |  121 --
 src/native/python/jpype_javaarray.cpp              |  223 ----
 src/python/jpype/_darwin.py                        |   20 -
 src/python/jpype/_jarray.py                        |  169 ---
 src/python/jpype/_jclass.py                        |  185 ---
 src/python/jpype/_jcollection.py                   |  260 -----
 src/python/jpype/_jexception.py                    |   74 --
 src/python/jpype/_jobject.py                       |   31 -
 src/python/jpype/_jproxy.py                        |   61 -
 src/python/jpype/_linux.py                         |   82 --
 src/python/jpype/_properties.py                    |   44 -
 src/python/jpype/_windows.py                       |   34 -
 src/python/jpype/findjvm.py                        |   20 -
 src/python/jpypex/swing/pyutils.py                 |   28 -
 test-requirements-py3.txt                          |    1 +
 test-requirements.txt                              |    2 +
 test/buf_leak_test.py                              |   18 +-
 test/buf_leak_test3.py                             |   17 +-
 test/build.xml                                     |   27 +-
 test/convtest.py                                   |   22 +-
 test/findjvm.py                                    |    2 +-
 test/harness/jpype/attr/SyntheticMethods.java      |   17 +
 test/harness/jpype/attr/Test1.java                 |   23 +-
 test/harness/jpype/attr/Test2.java                 |    2 +-
 test/harness/jpype/attr/TestOverloadA.java         |    7 +
 test/harness/jpype/attr/TestOverloadB.java         |    4 +
 test/harness/jpype/attr/TestOverloadC.java         |    7 +
 test/harness/jpype/collection/TestEnum.java        |    5 +
 test/harness/jpype/exc/ChildTestException.java     |    4 +
 test/harness/jpype/exc/ExceptionTest.java          |    5 +
 test/harness/jpype/exc/ParentTestException.java    |    4 +
 .../Test1.java => mro/MultipleInterfaces.java}     |   74 +-
 test/harness/jpype/objectwrapper/Test1.java        |    5 +
 test/harness/jpype/overloads/Test1.java            |  204 ++++
 test/harness/jpype/properties/TestBean.java        |   78 ++
 test/harness/jpype/proxy/ProxyTriggers.java        |   67 ++
 test/harness/jpype/proxy/Test3.java                |   60 -
 test/harness/jpype/proxy/TestInterface1.java       |    6 +
 .../{ITestInterface2.java => TestInterface2.java}  |    6 +-
 .../{ITestInterface3.java => TestInterface3.java}  |    4 +-
 test/harness/jpype/proxy/TestThreadCallback.java   |    7 +
 test/java_dom.py                                   |   21 +-
 test/java_sax.py                                   |   17 +-
 test/jpypetest/__init__.py                         |    4 +-
 test/jpypetest/array.py                            |  305 +++--
 test/jpypetest/attr.py                             |  420 ++++---
 test/jpypetest/collection.py                       |   32 +
 test/jpypetest/common.py                           |   34 +-
 test/jpypetest/exc.py                              |  113 +-
 test/jpypetest/jvmfinder.py                        |  124 ++
 test/jpypetest/mro.py                              |   18 +-
 test/jpypetest/numeric.py                          |   88 +-
 test/jpypetest/objectwrapper.py                    |   76 +-
 test/jpypetest/overloads.py                        |  166 +++
 test/jpypetest/properties.py                       |   58 +
 test/jpypetest/proxy.py                            |  155 ++-
 test/jpypetest/serial.py                           |   43 +-
 test/lists_and_maps.py                             |    4 +-
 test/nbproject/project.xml                         |   62 +
 test/python_dom.py                                 |   20 +-
 test/stub.py                                       |    2 +-
 test/test_awt.py                                   |   14 +-
 test/test_jarray_fixes.py                          |   65 ++
 test/testlucene.py                                 |   44 +-
 test/testsuite.py                                  |   58 +-
 test/transform_xunit_to_appveyor.xsl               |  101 ++
 202 files changed, 10618 insertions(+), 4298 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-jpype.git



More information about the Python-modules-commits mailing list