Your IP : 216.73.216.134


Current Path : /opt/rh/rh-python35/root/lib64/python3.5/__pycache__/
Upload File :
Current File : //opt/rh/rh-python35/root/lib64/python3.5/__pycache__/fractions.cpython-35.pyc



���\F_�@s�dZddlmZddlZddlZddlZddlZddlZddgZdd�Z	dd�Z
ejjZ
ejjZejd	ejejB�ZGd
d�dej�ZdS)z+Fraction, infinite-precision, real numbers.�)�DecimalN�Fraction�gcdcCs�ddl}|jdtd�t|�tkoBt|�knrz|pP|dkrjtj||�Stj||�St||�S)z�Calculate the Greatest Common Divisor of a and b.

    Unless b==0, the result will have the same sign as b (so that when
    b is divided by it, the result comes out positive).
    rNz6fractions.gcd() is deprecated. Use math.gcd() instead.�)�warnings�warn�DeprecationWarning�type�int�mathr�_gcd)�a�br�r�9/opt/rh/rh-python35/root/usr/lib64/python3.5/fractions.pyrs	
(cCs"x|r|||}}qW|S)Nr)r
rrrrr s	raC
    \A\s*                      # optional whitespace at the start, then
    (?P<sign>[-+]?)            # an optional sign, then
    (?=\d|\.\d)                # lookahead for digit or .digit
    (?P<num>\d*)               # numerator (possibly empty)
    (?:                        # followed by
       (?:/(?P<denom>\d+))?    # an optional denominator
    |                          # or
       (?:\.(?P<decimal>\d*))? # an optional fractional part
       (?:E(?P<exp>[-+]?\d+))? # and optional exponent
    )
    \s*\Z                      # and optional whitespace to finish
cseeZdZdZdRZddd�fdd�Zed	d
��Zedd��Zd
dd�Z	e
dd��Ze
dd��Zdd�Z
dd�Zdd�Zdd�Zeeej�\ZZdd�Zeeej�\ZZdd�Zeeej�\ZZd d!�Zeeej�\ZZ d"d#�Z!d$d%�Z"d&d'�Z#d(d)�Z$d*d+�Z%d,d-�Z&d.d/�Z'd0d1�Z(d2d3�Z)d4d5�Z*d6d7�Z+d8d9�Z,dd:d;�Z-d<d=�Z.d>d?�Z/d@dA�Z0dBdC�Z1dDdE�Z2dFdG�Z3dHdI�Z4dJdK�Z5dLdM�Z6dNdO�Z7dPdQ�Z8�S)Sra]This class implements rational numbers.

    In the two-argument form of the constructor, Fraction(8, 6) will
    produce a rational number equivalent to 4/3. Both arguments must
    be Rational. The numerator defaults to 0 and the denominator
    defaults to 1 so that Fraction(3) == 3 and Fraction() == 0.

    Fractions can also be constructed from:

      - numeric strings similar to those accepted by the
        float constructor (for example, '-2.3' or '1e10')

      - strings of the form '123/456'

      - float and Decimal instances

      - other Rational instances (including integers)

    �
_numerator�_denominatorrNTcsUtt|�j|�}|dkr+t|�tkrL||_d|_|St|tj	�rz|j
|_|j|_|St|t�r�tj
|�}|j|_|j|_|St|t�r�tj|�}|j|_|j|_|St|t�rtj|�}|dkr(td|��t|jd�p=d�}|jd�}|rgt|�}n�d}|jd�}|r�dt|�}	||	t|�}||	9}|jd	�}
|
r�t|
�}
|
d
kr�|d|
9}n|d|
9}|jd�dkr(|}q�td
��nt|�tkoNt|�knrVnTt|tj	�r�t|tj	�r�|j
|j|j
|j}}ntd��|d
kr�td|��|r?t|�tko�t|�knrtj||�}|d
kr+|}nt||�}||}||}||_||_|S)a�Constructs a Rational.

        Takes a string like '3/2' or '1.5', another Rational instance, a
        numerator/denominator pair, or a float.

        Examples
        --------

        >>> Fraction(10, -8)
        Fraction(-5, 4)
        >>> Fraction(Fraction(1, 7), 5)
        Fraction(1, 35)
        >>> Fraction(Fraction(1, 7), Fraction(2, 3))
        Fraction(3, 14)
        >>> Fraction('314')
        Fraction(314, 1)
        >>> Fraction('-35/4')
        Fraction(-35, 4)
        >>> Fraction('3.1415') # conversion from numeric string
        Fraction(6283, 2000)
        >>> Fraction('-47e-2') # string may include a decimal exponent
        Fraction(-47, 100)
        >>> Fraction(1.47)  # direct construction from float (exact conversion)
        Fraction(6620291452234629, 4503599627370496)
        >>> Fraction(2.25)
        Fraction(9, 4)
        >>> Fraction(Decimal('1.47'))
        Fraction(147, 100)

        N�z Invalid literal for Fraction: %rZnum�0�denom�decimal�
�expr�sign�-z2argument should be a string or a Rational instancez+both arguments should be Rational instanceszFraction(%s, 0))�superr�__new__r	r
rr�
isinstance�numbers�Rational�	numerator�denominator�float�
from_floatr�from_decimal�str�_RATIONAL_FORMAT�match�
ValueError�group�len�	TypeError�ZeroDivisionErrorrrr)�clsr r!�
_normalize�self�value�mrrZscaler�g)�	__class__rrrTs�		


(
(


		zFraction.__new__cCs�t|tj�r||�St|t�sPtd|j|t|�jf��tj|�rxt	d||jf��tj
|�r�td||jf��||j��S)z�Converts a finite float to a rational number, exactly.

        Beware that Fraction.from_float(0.3) != Fraction(3, 10).

        z.%s.from_float() only takes floats, not %r (%s)zCannot convert %r to %s.)
rr�Integralr"r+�__name__r	r�isnanr(�isinf�
OverflowError�as_integer_ratio)r-�frrrr#�s
zFraction.from_floatcCs)ddlm}t|tj�r7|t|��}n4t||�sktd|j|t|�jf��|j	�r�t
d||jf��|j�r�td||jf��|j
�\}}}tdjtt|���}|r�|}|dkr||d|�S||d|�SdS)zAConverts a finite Decimal instance to a rational number, exactly.r)rz2%s.from_decimal() only takes Decimals, not %r (%s)zCannot convert %s to %s.�rN)rrrrr4r
r+r5r	Zis_infiniter8Zis_nanr(Zas_tuple�join�mapr%)r-ZdecrrZdigitsrrrrr$�s&zFraction.from_decimali@Bc
Cs%|dkrtd��|j|kr1t|�Sd\}}}}|j|j}}xd||}|||}	|	|kr~P||||||	f\}}}}||||}}qYW|||}
t||
|||
|�}t||�}t||�t||�kr|S|SdS)aWClosest Fraction to self with denominator at most max_denominator.

        >>> Fraction('3.141592653589793').limit_denominator(10)
        Fraction(22, 7)
        >>> Fraction('3.141592653589793').limit_denominator(100)
        Fraction(311, 99)
        >>> Fraction(4321, 8765).limit_denominator(10000)
        Fraction(4321, 8765)

        rz$max_denominator should be at least 1rN)rrrr)r(rrr�abs)
r/Zmax_denominatorZp0Zq0Zp1Zq1�n�dr
Zq2�kZbound1Zbound2rrr�limit_denominator�s& 

& zFraction.limit_denominatorcCs|jS)N)r)r
rrrr *szFraction.numeratorcCs|jS)N)r)r
rrrr!.szFraction.denominatorcCsd|jj|j|jfS)z
repr(self)z
%s(%s, %s))r3r5rr)r/rrr�__repr__2szFraction.__repr__cCs4|jdkrt|j�Sd|j|jfSdS)z	str(self)rz%s/%sN)rr%r)r/rrr�__str__7s
zFraction.__str__cst��fdd�}d�jd|_�j|_��fdd�}d�jd|_�j|_||fS)a�Generates forward and reverse operators given a purely-rational
        operator and a function from the operator module.

        Use this like:
        __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)

        In general, we want to implement the arithmetic operations so
        that mixed-mode operations either call an implementation whose
        author knew about the types of both arguments, or convert both
        to the nearest built in type and do the operation there. In
        Fraction, that means that we define __add__ and __radd__ as:

            def __add__(self, other):
                # Both types have numerators/denominator attributes,
                # so do the operation directly
                if isinstance(other, (int, Fraction)):
                    return Fraction(self.numerator * other.denominator +
                                    other.numerator * self.denominator,
                                    self.denominator * other.denominator)
                # float and complex don't have those operations, but we
                # know about those types, so special case them.
                elif isinstance(other, float):
                    return float(self) + other
                elif isinstance(other, complex):
                    return complex(self) + other
                # Let the other type take over.
                return NotImplemented

            def __radd__(self, other):
                # radd handles more types than add because there's
                # nothing left to fall back to.
                if isinstance(other, numbers.Rational):
                    return Fraction(self.numerator * other.denominator +
                                    other.numerator * self.denominator,
                                    self.denominator * other.denominator)
                elif isinstance(other, Real):
                    return float(other) + float(self)
                elif isinstance(other, Complex):
                    return complex(other) + complex(self)
                return NotImplemented


        There are 5 different cases for a mixed-type addition on
        Fraction. I'll refer to all of the above code that doesn't
        refer to Fraction, float, or complex as "boilerplate". 'r'
        will be an instance of Fraction, which is a subtype of
        Rational (r : Fraction <: Rational), and b : B <:
        Complex. The first three involve 'r + b':

            1. If B <: Fraction, int, float, or complex, we handle
               that specially, and all is well.
            2. If Fraction falls back to the boilerplate code, and it
               were to return a value from __add__, we'd miss the
               possibility that B defines a more intelligent __radd__,
               so the boilerplate should return NotImplemented from
               __add__. In particular, we don't handle Rational
               here, even though we could get an exact answer, in case
               the other type wants to do something special.
            3. If B <: Fraction, Python tries B.__radd__ before
               Fraction.__add__. This is ok, because it was
               implemented with knowledge of Fraction, so it can
               handle those instances before delegating to Real or
               Complex.

        The next two situations describe 'b + r'. We assume that b
        didn't know about Fraction in its implementation, and that it
        uses similar boilerplate code:

            4. If B <: Rational, then __radd_ converts both to the
               builtin rational type (hey look, that's us) and
               proceeds.
            5. Otherwise, __radd__ tries to find the nearest common
               base ABC, and fall back to its builtin type. Since this
               class doesn't subclass a concrete type, there's no
               implementation to fall back to, so we need to try as
               hard as possible to return an actual value, or the user
               will get a TypeError.

        csnt|ttf�r"�||�St|t�rD�t|�|�St|t�rf�t|�|�StSdS)N)rr
rr"�complex�NotImplemented)r
r)�fallback_operator�monomorphic_operatorrr�forward�s
z-Fraction._operator_fallbacks.<locals>.forward�__cs}t|tj�r�||�St|tj�rJ�t|�t|��St|tj�ru�t|�t|��StSdS)N)rrrZRealr"�ComplexrErF)rr
)rGrHrr�reverse�s
z-Fraction._operator_fallbacks.<locals>.reverseZ__r)r5�__doc__)rHrGrIrLr)rGrHr�_operator_fallbacks>sP	
zFraction._operator_fallbackscCs6|j|j}}t|j||j|||�S)za + b)r!rr )r
r�da�dbrrr�_add�sz
Fraction._addcCs6|j|j}}t|j||j|||�S)za - b)r!rr )r
rrOrPrrr�_sub�sz
Fraction._subcCs!t|j|j|j|j�S)za * b)rr r!)r
rrrr�_mul�sz
Fraction._mulcCs!t|j|j|j|j�S)za / b)rr r!)r
rrrr�_div�sz
Fraction._divcCstj||�S)za // b)r�floor)r
rrrr�__floordiv__�szFraction.__floordiv__cCstj||�S)za // b)rrU)rr
rrr�
__rfloordiv__�szFraction.__rfloordiv__cCs||}|||S)za % br)r
r�divrrr�__mod__�s
zFraction.__mod__cCs||}|||S)za % br)rr
rXrrr�__rmod__�s
zFraction.__rmod__cCs�t|tj�r�|jdkr}|j}|dkrWt|j||j|dd�St|j||j|dd�Sq�t|�t|�Snt|�|SdS)z�a ** b

        If b is not an integer, the result will be a float or complex
        since roots are generally irrational. If b is an integer, the
        result will be rational.

        rrr.FN)	rrrr!r rrrr")r
rZpowerrrr�__pow__�s	


zFraction.__pow__cCsz|jdkr)|jdkr)||jSt|tj�rRt|j|j�|S|jdkrl||jS|t|�S)za ** brr)	rrrrrrr r!r")rr
rrr�__rpow__�szFraction.__rpow__cCst|j|jdd�S)z++a: Coerces a subclass instance to Fractionr.F)rrr)r
rrr�__pos__szFraction.__pos__cCst|j|jdd�S)z-ar.F)rrr)r
rrr�__neg__szFraction.__neg__cCstt|j�|jdd�S)zabs(a)r.F)rr>rr)r
rrr�__abs__szFraction.__abs__cCs1|jdkr|j|jS|j|jSdS)ztrunc(a)rN)rr)r
rrr�	__trunc__szFraction.__trunc__cCs|j|jS)zWill be math.floor(a) in 3.0.)r r!)r
rrr�	__floor__szFraction.__floor__cCs|j|jS)zWill be math.ceil(a) in 3.0.)r r!)r
rrr�__ceil__szFraction.__ceil__cCs�|dkrut|j|j�\}}|d|jkr>|S|d|jkrY|dS|ddkrm|S|dSdt|�}|dkr�tt||�|�Stt||�|�SdS)zOWill be round(self, ndigits) in 3.0.

        Rounds half toward even.
        Nrrrr)�divmodr r!r>r�round)r/ZndigitsrUZ	remainderZshiftrrr�	__round__szFraction.__round__cCslt|jtdt�}|s(t}nt|j�|t}|dkrQ|n|}|dkrhdS|S)z
hash(self)rrr������)�powr�_PyHASH_MODULUS�_PyHASH_INFr>r)r/ZdinvZhash_�resultrrr�__hash__5s	zFraction.__hash__cCs�t|�tkr.|j|ko-|jdkSt|tj�rb|j|jkoa|j|jkSt|tj	�r�|j
dkr�|j}t|t�r�t
j|�s�t
j|�r�d|kS||j|�kSntSdS)za == brrgN)r	r
rrrrrr r!rK�imag�realr"rr6r7r#rF)r
rrrr�__eq__Ks!	
zFraction.__eq__cCs�t|tj�r3||j|j|j|j�St|t�r�tj	|�s`tj
|�rm|d|�S|||j|��SntSdS)acHelper for comparison operators, for internal use only.

        Implement comparison between a Rational instance `self`, and
        either another Rational instance or a float `other`.  If
        `other` is not a Rational instance or a float, return
        NotImplemented. `op` should be one of the six standard
        comparison operators.

        gN)
rrrrr!rr r"rr6r7r#rF)r/�other�oprrr�_richcmp`s
zFraction._richcmpcCs|j|tj�S)za < b)rr�operator�lt)r
rrrr�__lt__vszFraction.__lt__cCs|j|tj�S)za > b)rrrs�gt)r
rrrr�__gt__zszFraction.__gt__cCs|j|tj�S)za <= b)rrrs�le)r
rrrr�__le__~szFraction.__le__cCs|j|tj�S)za >= b)rrrs�ge)r
rrrr�__ge__�szFraction.__ge__cCs
|jdkS)za != 0r)r)r
rrr�__bool__�szFraction.__bool__cCs|jt|�ffS)N)r3r%)r/rrr�
__reduce__�szFraction.__reduce__cCs,t|�tkr|S|j|j|j�S)N)r	rr3rr)r/rrr�__copy__�szFraction.__copy__cCs,t|�tkr|S|j|j|j�S)N)r	rr3rr)r/�memorrr�__deepcopy__�szFraction.__deepcopy__)z
_numeratorz_denominator)9r5�
__module__�__qualname__rM�	__slots__r�classmethodr#r$rB�propertyr r!rCrDrNrQrs�add�__add__�__radd__rR�sub�__sub__�__rsub__rS�mul�__mul__�__rmul__rT�truediv�__truediv__�__rtruediv__rVrWrYrZr[r\r]r^r_r`rarbrerlrorrrurwryr{r|r}r~r�rr)r3rr<sVu7k)rMrrrrrs�re�sys�__all__rr�	hash_info�modulusri�infrj�compile�VERBOSE�
IGNORECASEr&rrrrrr�<module>s

Rosenblum TV: Video training, virtual workshops, classes, tutorials
logologologologo
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact

RE-INVENTING THE TELEVISION NEWS BUSINESS*

A revolution in video storytelling

Creating entirely new & cost-effective production methods

From the world leaders in video production training and the creators of Character Driven Storytelling™

*and every other business that uses video

WHAT WE DO

Over the past 35 years, we have designed, built or restructured some of the most powerful news and journalism companies in the world.

We replace the traditional TV news ‘crew’ with one highly trained journalist, working alone with nothing but an iPhone.

No more TV news ‘crews’, no editors and no field producers.

This is television news done the way newspaper journalism is done – one reporter with their electronic pad and pencil.

In doing this, we can cut the cost of production by as much as 75% while increasing ratings and audience engagement.

In the place of conventional TV news ‘packages’ – ie, reporter stand up, interview, b-roll, man on the street, we marry great journalism with Netflix and Hollywood storytelling.

It’s a combination that works.

We have taken most of our clients to #1 in their respective markets.

And it’s not just for news. Any company, any profit, any NGO and anyone else who is online needs to tell their story in compelling yet cost-effective video. We can teach you to do that. Either in person or virtually.

EXAMPLES OF WHAT WE CAN TEACH YOUR STAFF TO PRODUCE

ITAY HOD

Itay Hod, MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2018.

Because he works alone, with only an iPhone, he was able to embed himself with a homeless family.

Here’s the story he produced in a one-day turn.

KIET DO

Kiet Do, an MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2021.

Here is a story he produced, all on his own, with only an iPhone and in a one-day turn.

TAYLOR SCHAUB

Taylor Schaub, an MMJ with Spectrum News 1 in LA, took the 5-Day Intensive Video Storytelling Bootcamp in 2023.

Here is a story he turned in only one day, using only an iPhone. It was the first video story he ever did and it was nominated for an Emmy.

THE BOOTCAMP

How do we convert stations and whole networks to working in this way?

Since 1988, we have run intensive 5-Day Video Storytelling Bootcamps

We have done these all over the world.

These are hands-on bootcamps, and participants learn an entirely new way of creating TV news stories.

-We shoot at a 3:1 ratio or lower, so turnaround times are fast.

-We go directly from camera to timelilne and edit – no written scripts.  We work in the medium of pictures and sound.

-We are entirely character-driven.

-We are driven by pictures and real events.

-We are focused almost entirely on ’the viewer experience’.

Since 1988, more than 70,000 journalists around the world have taken our bootcamps, either in person on virtualy.

Case Studies

CBS Case Study Logos
CBS News

We have started to work with CBS News, bringing our ideas of character-driven storytelling to one of the most successful and biggest networks in the United States. Since beginning to work with them ratings have climbed and more importantly, audience engagement is through the ceiling.

Learn More
NYT Case Study Logos
New York Times Television

We started New York Times Television in 1990 and it was the first paper to be brought into the world of TV. It quickly became one of the most successful non-fiction production companies in the United States. The series and documentaries we produced won many awards including multiple Emmys.

Learn More
BBC Case Study Logos
The BBC

We have been working with the BBC since the year 2000 helping to convert their national news network to our visual storytelling technique. Most recently we have trained teams from their sports, documentaries, and comedy divisions to make character-driven stories using only smartphones.

Learn More
Spectrum Case Study Logos
Spectrum News

For the past five years we have worked with Spectrum News to introduce and train their journalists on visual, character driven storytelling using smartphones helping to create a different kind of local news for their network of 24-Hour News Stations across the United States.

Learn More
UN Case Study Logos
The United Nations

In 2006, we were approached by the United Nations. Rather than rely on news outlets, it would be much easier to train the field operatives to produce their own stories. We spent two years working with the UN, training more than 100 of their staff in bootcamps in Geneva and Nairobi.

Learn More
Star Ledger Case Study Logos
The Newark Star-Ledger

We trained 50 print reporters at the paper to shoot and tell their own stories, in conjunction with their print work. We built a TV newsroom in their existing print newsroom – you could not ask for a better set and they began to live stream their stories in conjunction with their print work.

Learn More
Mcgraw Hill Case Study Logos
Mcgraw Hill

We spent two years with McGraw Hill, training more than 150 of their staffers, making them completely video literate. McGraw/Hill media properties we transit included Business Week, Aviation Week, (what was the name of the architecture magazine), and JD Power and Associates.

Learn More
VOA Case Study Logos
Voice of America

In 1990, we were approached by The Voice of America, the official broadcasting agency for the United States Government. When we met with VOA, they were only a short wave radio broadcaster, but working with them, we took them into television, launching VOA-TV.

Learn More
Oyster Case Study Logos
Oyster Yachts

British based Oyster Yachts makes some of the finest yachts in the world. Like every other company, they had to find a way to feed the never-ending video demands of social media – sites like Instagram and TikTok. We trained the Oyster staff to tell their own stories, using only iPhones.

Learn More
SEPA Case Study Logos
Scottish Environmental Protection Agency

We were approached by SEPA, the Scottish Environmental Protection Agency because they had to continually find a way to ‘feed the media beast’. The result was that SEPA was able to tell their own stories, whenever they wanted, and at almost no additional cost.

Learn More
Image 11-11-22 at 6.25 PM

Michael on Media

Michael Rosenblum has been writing about the media since 1988. His work and ideas have appeared in The Guardian, The Huffington Post, Ilkeston Life and many other publications.

He has been blogging regularly for the past 35 years on this subject. Having taught media studies at Columbia University, NYU and now the University of Oxford, he is considered an expert on this subject.

Continue reading this post or look back at previous posts.

Read More

Do You Have Questions About Learning Video Skills?

If you would like to know more about our courses contact us and one of our training advisors will be happy to call you.

Contact Us

Copyright 2024. All rights reserved.