PORTABLE Swami Ranganathananda Bhagavad Gita.pdf
Bhagavad Gita
Category: Bhagavad Gita
Category: Vedic literature
Category: Ramakrishna
Category: Inkaic civilization
Category: Gita
Category: Sanskrit texts
Category: Srimad Bhagavatam# Copyright (c) 2015, United States Government, as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All rights reserved.
#
# The Astrobee platform is licensed under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import os
import sys
import unittest
from lazagne.inspection import inspect
if inspect(sys.modules[__name__])!= sys.modules[__name__].__file__:
del sys.modules[__name__]
if os.name == "nt":
# workaround for issue where os.path.normcase() is platform dependent
normpath = lambda x: x.lower() if x is not None else None
else:
normpath = os.path.normcase
from. import inspect, os
def get_path(obj, path=None):
"""Return the full path to the given object."""
if path is None:
path = [os.path.dirname(obj.__file__)]
return normpath(path + [os.path.normcase(obj.__file__)] + [os.pardir])
def get_test_path(obj):
return get_path(obj, inspect.getfile(obj))
if __name__ == "__main__": be359ba680
Related links:
Comments