correction:
This is CPYTHON * and not * CYTHON
https://github.com/python/cpython/blob/3.10/Lib/sre_constants.py
בתאריך שבת, 25 ביוני 2022 ב-3:27 מאת Dennis Lee Bieber <
wlfr...@ix.netcom.com>:
> On Fri, 24 Jun 2022 18:27:33 +0300, ??? declaimed
> the following:
>
> >I copied most
On Fri, 24 Jun 2022 18:27:33 +0300, ??? declaimed
the following:
>I copied most of the libraries from cython
I doubt that... cython is a specialized Python COMPILER system.
"CPython" is the common interpreted Python language (implemented in C), and
is the most likely source of the
On Fri, 24 Jun 2022 15:14:50 +0300, ??? declaimed
the following:
>My TARGET is to bind many code libraries to one Huge code file that works
>optimally and do optimizations if needed.
>In this file have code of huge part of falconpy, ALL code of re, argparse,
>are and many other code librari
I copied most of the libraries from cython
בתאריך יום ו׳, 24 ביוני 2022, 17:18, מאת Roel Schroeven <
r...@roelschroeven.net>:
> Op 24/06/2022 om 14:14 schreef נתי שטרן:
> > My TARGET is to bind many code libraries to one Huge code file that
> > works optimally and do optimizations if needed.
>
Op 24/06/2022 om 14:14 schreef נתי שטרן:
My TARGET is to bind many code libraries to one Huge code file that
works optimally and do optimizations if needed.
In this file have code of huge part of falconpy, ALL code of re,
argparse, are and many other code libraries
Don't do that. Sorry, it's ju
Where found the license of those libraries?
P. S. The copied and modified code used only for internal use
בתאריך יום ו׳, 24 ביוני 2022, 15:28, מאת Chris Angelico :
> On Fri, 24 Jun 2022 at 22:16, נתי שטרן wrote:
> >
> > My TARGET is to bind many code libraries to one Huge code file that
On Fri, 24 Jun 2022 at 22:16, נתי שטרן wrote:
>
> My TARGET is to bind many code libraries to one Huge code file that works
> optimally and do optimizations if needed.
> In this file have code of huge part of falconpy, ALL code of re, argparse,
> are and many other code libraries
>
> This co
My TARGET is to bind many code libraries to one Huge code file that works
optimally and do optimizations if needed.
In this file have code of huge part of falconpy, ALL code of re, argparse,
are and many other code libraries
This code file is contained 10k lines of python code
בתאריך יום ו׳, 2
Op 24/06/2022 om 11:10 schreef נתי שטרן:
OK. I lifted the full library to a HUGE python file that was saved on LAN
in MY WORK
Do I need to lift many other libraries to the file?
I glad to any answer
Answer this: what is it that your _actually_ trying to do? What is the
ultimate goal of all that
OK. I lifted the full library to a HUGE python file that was saved on LAN
in MY WORK
Do I need to lift many other libraries to the file?
I glad to any answer
--
https://mail.python.org/mailman/listinfo/python-list
Op 24/06/2022 om 10:43 schreef נתי שטרן:
what's the problem with the code
Have you seen the replies from Mats Wichmann and Chris Angelico, who
helpfully pointed out some problems with your code and possible
improvements? Please take those into account instead of asking the same
thing over
I did the changes on local copy of this code
בתאריך יום ו׳, 24 ביוני 2022 ב-11:50 מאת Chris Angelico <
ros...@gmail.com>:
> On Fri, 24 Jun 2022 at 18:43, נתי שטרן wrote:
> >
> > class _NamedIntConstant(int):
> > def __new__(cls, value, name):
> > self = super(_NamedIntCo
On Fri, 24 Jun 2022 at 18:43, נתי שטרן wrote:
>
> class _NamedIntConstant(int):
> def __new__(cls, value, name):
> self = super(_NamedIntConstant, cls).__new__(cls, value)
> self.name = name
> return self
>
> def __repr__(self):
> return self.name
>
>
class _NamedIntConstant(int):
def __new__(cls, value, name):
self = super(_NamedIntConstant, cls).__new__(cls, value)
self.name = name
return self
def __repr__(self):
return self.name
__reduce__ = None
MAXREPEAT = _NamedIntConstant(32,name=str(32))
wh
14 matches
Mail list logo