Re: zeroed out

2018-12-12 Thread Gregory Ewing
MRAB wrote: Later processors have a DAS instruction, which is used after BCD subtraction. The humble 6502 doesn't have DAA/DAS, but instead has a decimal mode flag. The 68000 also had a Decimal Add instruction, but disappointingly it only worked a byte at a time. I guess running COBOL at high

Re: When to Use Django & Flask frame work

2018-12-12 Thread Ben Finney
VENKEY ROKZS writes: > Hi Viewers, Welcome to the Python discussion forum. > I am new to java I want to about when to Use Django & Flask.. Typically we use those frameworks more with Python, not Java :-) > I have started working on it.Anybody can you suggest the difference... The biggest di

Re: setup.py and licensing questions

2018-12-12 Thread songbird
Ben Finney wrote: > songbird writes: > >> can i put multiple License lines in setup.py >> classifiers like: ? >> >> "License :: OSI Approved :: ???", >> "License :: OSI Approved :: ???", > > Yes. > > The semantics of that are not formalised, to my knowledge. You would be > si

When to Use Django & Flask frame work

2018-12-12 Thread VENKEY ROKZS
Hi Viewers, I am new to java I want to about when to Use Django & Flask.. I have started working on it.Anybody can you suggest the difference...will be Appreciated. -- https://mail.python.org/mailman/listinfo/python-list

Re: Help - Python REST API

2018-12-12 Thread Ben Finney
Afriyie Abraham Kwabena writes: > Am trying to create a basic authorization server using client > credentials flow and client so that the client can send it credentials > using REST methods (POST) to the authorization server. At minimum, this implies that you are implementing a web server (eithe

Re: setup.py and licensing questions

2018-12-12 Thread Ben Finney
songbird writes: > can i put multiple License lines in setup.py > classifiers like: ? > > "License :: OSI Approved :: ???", > "License :: OSI Approved :: ???", Yes. The semantics of that are not formalised, to my knowledge. You would be signaling that the specified licens

Re: zeroed out

2018-12-12 Thread MRAB
On 2018-12-12 18:59, Dennis Lee Bieber wrote: On Wed, 12 Dec 2018 00:46:03 -0500, "Avi Gross" declaimed the following: All kidding aside, I note that some data that is stored in a fixed width has zeroes padding it all the way to the right. If you store the number 3 in binary as a byte, it t

Help - Python REST API

2018-12-12 Thread Afriyie Abraham Kwabena
Hi, Am trying to create a basic authorization server using client credentials flow and client so that the client can send it credentials using REST methods (POST) to the authorization server. Authrization server then respond with access token. After the access, client can POST, GET, etc to the

setup.py and licensing questions

2018-12-12 Thread songbird
hi, i'm currently working through all the packaging and licensing stuff for my project and want to put the license in the setup.py file, but there may actually be more than one license (GPL ones for the artwork i've borrowed from another project and whatever license i choose to put on my ow