MSV FM

[email protected]: ~ $
Path : /usr/lib64/python3.6/__pycache__/
File Upload :
Current < : //usr/lib64/python3.6/__pycache__/operator.cpython-36.pyc

3


 \o*�6@s(dZddddddddd	d
ddd
ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2d3d4d5d6g6Zd7d8lmZd9d&�Zd:d#�Zd;d	�Zd<d+�Zd=d�Z	d>d
�Z
d?d-�Zd@d5�ZdAd�Z
dBd�ZdCd�ZdDd�ZdEd�ZdFd
�ZdGd�ZdHd�ZeZdId%�ZdJd)�ZdKd*�ZdLd'�ZdMd,�ZdNd.�ZdOd/�ZdPd0�ZdQd1�ZdRd3�ZdSd4�ZdTd6�Z dUd�Z!dVd�Z"dWd�Z#dXd�Z$dYd�Z%dZd�Z&d[d2�Z'dqd\d$�Z(Gd]d�d�Z)Gd^d �d �Z*Gd_d(�d(�Z+d`d�Z,dad�Z-dbd�Z.dcd�Z/ddd�Z0ded�Z1dfd�Z2dgd�Z3dhd�Z4did�Z5djd�Z6dkd�Z7dld!�Z8dmd"�Z9yd7dnl:TWne;k
�rbYnXd7dol:mZeZ<eZ=eZ>eZ?e	Z@e
ZAeZBeZCeZDeZEeZFeZGeZHeZIeZJeZKeZLeZMeZNeZOeZPeZQeZReZSeZTe ZUe!ZVe"ZWe$ZXe%ZYe'ZZe,Z[e-Z\e.Z]e/Z^e0Z_e1Z`e2Zae3Zbe4Zce5Zde6Zee7Zfe8Zge9ZhdpS)ras
Operator Interface

This module exports a set of functions corresponding to the intrinsic
operators of Python.  For example, operator.add(x, y) is equivalent
to the expression x+y.  The function names are those used for special
methods; variants without leading and trailing '__' are also provided
for convenience.

This is the pure Python implementation of the module.
�abs�add�and_�
attrgetter�concat�contains�countOf�delitem�eq�floordiv�ge�getitem�gt�iadd�iand�iconcat�	ifloordiv�ilshift�imatmul�imod�imul�index�indexOf�inv�invert�ior�ipow�irshift�is_�is_not�isub�
itemgetter�itruediv�ixor�le�length_hint�lshift�lt�matmul�methodcaller�mod�mul�ne�neg�not_�or_�pos�pow�rshift�setitem�sub�truediv�truth�xor�)rcCs||kS)zSame as a < b.�)�a�br8r8� /usr/lib64/python3.6/operator.pyr&scCs||kS)zSame as a <= b.r8)r9r:r8r8r;r#scCs||kS)zSame as a == b.r8)r9r:r8r8r;r	#scCs||kS)zSame as a != b.r8)r9r:r8r8r;r+'scCs||kS)zSame as a >= b.r8)r9r:r8r8r;r+scCs||kS)zSame as a > b.r8)r9r:r8r8r;r
/scCs|S)zSame as not a.r8)r9r8r8r;r-5scCs|rdSdS)z*Return True if a is true, False otherwise.TFr8)r9r8r8r;r59scCs||kS)zSame as a is b.r8)r9r:r8r8r;r=scCs||k	S)zSame as a is not b.r8)r9r:r8r8r;rAscCst|�S)zSame as abs(a).)�_abs)r9r8r8r;rGscCs||S)zSame as a + b.r8)r9r:r8r8r;rKscCs||@S)zSame as a & b.r8)r9r:r8r8r;rOscCs||S)zSame as a // b.r8)r9r:r8r8r;r
SscCs|j�S)zSame as a.__index__().)�	__index__)r9r8r8r;rWscCs|S)zSame as ~a.r8)r9r8r8r;r[scCs||>S)zSame as a << b.r8)r9r:r8r8r;r%`scCs||S)zSame as a % b.r8)r9r:r8r8r;r)dscCs||S)zSame as a * b.r8)r9r:r8r8r;r*hscCs||S)zSame as a @ b.r8)r9r:r8r8r;r'lscCs|S)zSame as -a.r8)r9r8r8r;r,pscCs||BS)zSame as a | b.r8)r9r:r8r8r;r.tscCs|
S)zSame as +a.r8)r9r8r8r;r/xscCs||S)zSame as a ** b.r8)r9r:r8r8r;r0|scCs||?S)zSame as a >> b.r8)r9r:r8r8r;r1�scCs||S)zSame as a - b.r8)r9r:r8r8r;r3�scCs||S)zSame as a / b.r8)r9r:r8r8r;r4�scCs||AS)zSame as a ^ b.r8)r9r:r8r8r;r6�scCs(t|d�s dt|�j}t|��||S)z%Same as a + b, for a and b sequences.�__getitem__z!'%s' object can't be concatenated)�hasattr�type�__name__�	TypeError)r9r:�msgr8r8r;r�s
cCs||kS)z(Same as b in a (note reversed operands).r8)r9r:r8r8r;r�scCs&d}x|D]}||kr
|d7}q
W|S)z)Return the number of times b occurs in a.r7�r8)r9r:�count�ir8r8r;r�s

cCs
||=dS)zSame as del a[b].Nr8)r9r:r8r8r;r�scCs||S)z
Same as a[b].r8)r9r:r8r8r;r�scCs.x(t|�D]\}}||kr
|Sq
Wtd��dS)z!Return the first index of b in a.z$sequence.index(x): x not in sequenceN)�	enumerate�
ValueError)r9r:rF�jr8r8r;r�scCs|||<dS)zSame as a[b] = c.Nr8)r9r:�cr8r8r;r2�scCs�t|t�s dt|�j}t|��yt|�Stk
r<YnXyt|�j}Wntk
r`|SXy||�}Wntk
r�|SX|tkr�|St|t�s�dt|�j}t|��|dkr�d}t	|��|S)a2
    Return an estimate of the number of items in obj.
    This is useful for presizing containers when building from an iterable.

    If the object supports len(), the result will be exact. Otherwise, it may
    over- or under-estimate by an arbitrary amount. The result will be an
    integer >= 0.
    z/'%s' object cannot be interpreted as an integerz'__length_hint__ must be integer, not %sr7z$__length_hint__() should return >= 0)
�
isinstance�intr@rArB�len�__length_hint__�AttributeError�NotImplementedrH)�obj�defaultrCZhint�valr8r8r;r$�s4	

c@s4eZdZdZd
Zdd�Zdd�Zdd	�Zd
d�ZdS)raV
    Return a callable object that fetches the given attribute(s) from its operand.
    After f = attrgetter('name'), the call f(r) returns r.name.
    After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
    After h = attrgetter('name.first', 'name.last'), the call h(r) returns
    (r.name.first, r.name.last).
    �_attrs�_callcsn|s<t|t�std��|f|_|jd���fdd�}||_n.|f||_ttt|j����fdd�}||_dS)Nzattribute name must be a string�.csx�D]}t||�}qW|S)N)�getattr)rQ�name)�namesr8r;�func�s
z!attrgetter.__init__.<locals>.funccst�fdd��D��S)Nc3s|]}|��VqdS)Nr8)�.0�getter)rQr8r;�	<genexpr>�sz4attrgetter.__init__.<locals>.func.<locals>.<genexpr>)�tuple)rQ)�getters)rQr;rZ�s)	rK�strrBrT�splitrUr^�mapr)�self�attrZattrsrZr8)r_rYr;�__init__�s

zattrgetter.__init__cCs
|j|�S)N)rU)rcrQr8r8r;�__call__�szattrgetter.__call__cCs$d|jj|jjdjtt|j��fS)Nz	%s.%s(%s)z, )�	__class__�
__module__�__qualname__�joinrb�reprrT)rcr8r8r;�__repr__szattrgetter.__repr__cCs|j|jfS)N)rgrT)rcr8r8r;�
__reduce__szattrgetter.__reduce__N)rTrU)	rArhri�__doc__�	__slots__rerfrlrmr8r8r8r;r�sc@s4eZdZdZd
Zdd�Zdd�Zdd	�Zd
d�ZdS)r z�
    Return a callable object that fetches the given item(s) from its operand.
    After f = itemgetter(2), the call f(r) returns r[2].
    After g = itemgetter(2, 5, 3), the call g(r) returns (r[2], r[5], r[3])
    �_itemsrUcsF�s �f|_�fdd�}||_n"�f�|_��fdd�}||_dS)Ncs|�S)Nr8)rQ)�itemr8r;rZsz!itemgetter.__init__.<locals>.funccst�fdd��D��S)Nc3s|]}�|VqdS)Nr8)r[rF)rQr8r;r]sz4itemgetter.__init__.<locals>.func.<locals>.<genexpr>)r^)rQ)�items)rQr;rZs)rprU)rcrqrrrZr8)rqrrr;reszitemgetter.__init__cCs
|j|�S)N)rU)rcrQr8r8r;rfszitemgetter.__call__cCs$d|jj|jjdjtt|j��fS)Nz	%s.%s(%s)z, )rgrhrArjrbrkrp)rcr8r8r;rl szitemgetter.__repr__cCs|j|jfS)N)rgrp)rcr8r8r;rm%szitemgetter.__reduce__N)rprU)	rArhrirnrorerfrlrmr8r8r8r;r 	sc@s4eZdZdZdZdd�Zdd�Zd	d
�Zdd�Zd
S)r(z�
    Return a callable object that calls the given method on its operand.
    After f = methodcaller('name'), the call f(r) returns r.name().
    After g = methodcaller('name', 'date', foo=1), the call g(r) returns
    r.name('date', foo=1).
    �_name�_args�_kwargscOsVt|�dkrd}t|��|d}|d|_t|jt�s>td��|dd�|_||_dS)N�z9methodcaller needs at least one argument, the method namer7rDzmethod name must be a string)rMrBrsrKr`rtru)�args�kwargsrCrcr8r8r;re1s
zmethodcaller.__init__cCst||j�|j|j�S)N)rWrsrtru)rcrQr8r8r;rf<szmethodcaller.__call__cCsTt|j�g}|jtt|j��|jdd�|jj�D��d|jj|jj	dj
|�fS)Ncss|]\}}d||fVqdS)z%s=%rNr8)r[�k�vr8r8r;r]Bsz(methodcaller.__repr__.<locals>.<genexpr>z	%s.%s(%s)z, )rkrs�extendrbrtrurrrgrhrArj)rcrwr8r8r;rl?szmethodcaller.__repr__cCsD|js|j|jf|jfSddlm}||j|jf|j�|jfSdS)Nr7)�partial)rurgrsrt�	functoolsr|)rcr|r8r8r;rmGszmethodcaller.__reduce__N)rsrtru)	rArhrirnrorerfrlrmr8r8r8r;r((scCs||7}|S)zSame as a += b.r8)r9r:r8r8r;rQscCs||M}|S)zSame as a &= b.r8)r9r:r8r8r;rVscCs,t|d�s dt|�j}t|��||7}|S)z&Same as a += b, for a and b sequences.r>z!'%s' object can't be concatenated)r?r@rArB)r9r:rCr8r8r;r[s

cCs||}|S)zSame as a //= b.r8)r9r:r8r8r;rcscCs||K}|S)zSame as a <<= b.r8)r9r:r8r8r;rhscCs||;}|S)zSame as a %= b.r8)r9r:r8r8r;rmscCs||9}|S)zSame as a *= b.r8)r9r:r8r8r;rrscCs||}|S)zSame as a @= b.r8)r9r:r8r8r;rwscCs||O}|S)zSame as a |= b.r8)r9r:r8r8r;r|scCs||C}|S)zSame as a **= b.r8)r9r:r8r8r;r�scCs||L}|S)zSame as a >>= b.r8)r9r:r8r8r;r�scCs||8}|S)zSame as a -= b.r8)r9r:r8r8r;r�scCs||}|S)zSame as a /= b.r8)r9r:r8r8r;r!�scCs||N}|S)zSame as a ^= b.r8)r9r:r8r8r;r"�s)�*)rnN)r7)irn�__all__�builtinsrr<r&r#r	r+rr
r-r5rrrrr
rrrr%r)r*r'r,r.r/r0r1r3r4r6rrrrrrr2r$rr r(rrrrrrrrrrrrr!r"�	_operator�ImportError�__lt__�__le__�__eq__�__ne__�__ge__�__gt__�__not__�__abs__�__add__�__and__�__floordiv__r=�__inv__�
__invert__�
__lshift__�__mod__�__mul__�
__matmul__�__neg__�__or__�__pos__�__pow__�
__rshift__�__sub__�__truediv__�__xor__�
__concat__�__contains__�__delitem__r>�__setitem__�__iadd__�__iand__�__iconcat__�
__ifloordiv__�__ilshift__�__imod__�__imul__�__imatmul__�__ior__�__ipow__�__irshift__�__isub__�__itruediv__�__ixor__r8r8r8r;�<module>s�
)')
Bethany
Bethany
0%

THE FINEST HOTEL NEAR LAKE KIVU

The Perfect Base For You

Required fields are followed by *





EC1A68011

About Us

Delicious Interior With The Pinch Of Everything

Bethany Investment group is Presbyterian church in Rwanda(EPR) company that manage Hotel and Guest house in Karongi (Bethany Hotel), ISANO branch in GIKONDO(Kigali), Kiyovu branch(Kigali), AMIZERO branch(Nyagatare-East) and Gisenyi Branch(Rubavu).

Accomodation

Get a Comfortable Room
Feel The Comfort

Get a comfortable room and feel our hotel’s comfort. Bethany Hotel features a variety of fully furnished rooms with extra space, Executive rooms, Deluxe rooms with a beautiful lake view and garden space, Deluxe rooms, comfort rooms, family rooms and standard rooms at your service.

Standard Single

Services

We Provide Top Class Facility
Especially For You

Beach BBQ Party

Kick back on the beach& and enjoy our berbecue from our masterchef

Breakfast

Kick back at our hotels& enjoy our breakfast from our masterchef

Conference Hall

Kick back at our hotels& enjoy our conference halls from all bethany branches

Enjoy with your partner

Honeymoon Package

80%

Get In Touch

Don’t Miss Any Update

    +

    Search your Room

    Required fields are followed by *