summaryrefslogtreecommitdiff
path: root/distribution/python/slice2py.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2015-04-07 10:11:12 -0230
committerMatthew Newhook <matthew@zeroc.com>2015-04-07 10:11:12 -0230
commitd3263a9eca634577015acd488b10ca2850ca35d8 (patch)
treefb51bb80a70e17f6b2b8801c9e66e5f232116d45 /distribution/python/slice2py.py
parentCHANGELOG updates (diff)
downloadice-d3263a9eca634577015acd488b10ca2850ca35d8.tar.bz2
ice-d3263a9eca634577015acd488b10ca2850ca35d8.tar.xz
ice-d3263a9eca634577015acd488b10ca2850ca35d8.zip
Removed makegem and makepy scripts and associated support files.
Diffstat (limited to 'distribution/python/slice2py.py')
-rwxr-xr-xdistribution/python/slice2py.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/distribution/python/slice2py.py b/distribution/python/slice2py.py
deleted file mode 100755
index 7f2aca37164..00000000000
--- a/distribution/python/slice2py.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-# **********************************************************************
-#
-# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
-#
-# This copy of Ice is licensed to you under the terms described in the
-# ICE_LICENSE file included in this distribution.
-#
-# **********************************************************************
-
-import sys, Ice, IcePy
-def main():
- sliceDir = Ice.getSliceDir()
- # Automatically add the slice dir.
- if not sliceDir is None:
- sys.argv.append('-I' + sliceDir)
- val = IcePy.compile(sys.argv)
- sys.exit(int(val))