Showing results 5241-5250 of >5,324 (page 525)
https://docs.python.org/2/c-api/float.html

# Floating Point Objects ¶ - PyFloatObject ¶ This subtype of PyObject represents a Python floating point object. - PyTypeObject PyFloat_Type ¶ This instance of PyTypeObject represents the Python floating point type. This is the same object as float and types.FloatType. - int PyFloat_Check( PyObject *p) ¶ Return true if its argument is a PyFloatObject or a subtype of PyFloatObject . - int PyFloat_CheckExact( PyObject *p) ¶ Return true if its argument is a PyFloatObject , but not a subtype of PyFloatO

https://modpython.org/pipermail/mod_python/2006-June/021457.html

[mod_python] Re: return type of parse method of class SignedCookie Daniel Nogradi nogradi at gmail.com Sat Jun 24 04:39:46 EDT 2006 Previous message: [mod_python] return type of parse method of class SignedCookie Next message: [mod_python] A newbie question Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] > > I'm slightly confused about the return type of the parse method of > > SignedCookie and the way one should check if the cookie was signed > > correctly. Cookie.py defines the parse method

https://www.peterbe.com/plog/python-preact-app-deployed-on-heroku

A Python and Preact app deployed on Heroku Friday, Dec 13, 2019 2 comments Python , Web development , Django , Docker , JavaScript Heroku is great but it's sometimes painful when your app isn't just in one single language. What I have is a project where the backend is Python (Django) and the frontend is JavaScript (Preact). The folder structure looks like this: / - README.md - manage.py - requirements.txt - my_django_app/ - settings.py - asgi.py - api/ - urls.py - views.py - frontend/ - package.json - yarn

https://twisted.org/pipermail/twisted-python/2008-July/050532.html

[Twisted-Python] "Failure: exceptions.TypeError: exceptions must be classes, instances, or strings..." Don Dwiggins ddwiggins at advpubtech.com Wed Jul 2 19:44:49 MDT 2008 Previous message (by thread): [Twisted-Python] Re: Re: Twisted Hosting and Twisted in the Cloud Next message (by thread): [Twisted-Python] "Failure: exceptions.TypeError: exceptions must be classes, instances, or strings..." Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] I'm running an xmlrpc server, frozen with py2exe. I

https://blog.ian.stapletoncordas.co/2012/06/python-del

--> # cat /dev/brain --> ## Python: del While testing github3.py by hand, I found myself wanted to delete objects that I created as a test from an array after deleting them on GitHub. To do that, I have to do: gists[index].delete() del gists[index] So my initial instinct was to modify the __del__ method on the objects with delete methods. That would look something like this: class Gist(GitHubCore): # snip def __del__(self): self.delete() # snip And would be used: del gists[index] But I remembered

https://leapcell.io/blog/python-advanced-a-journey-with-abstract-base-classes

Today, we are going to explore Abstract Base Classes (ABCs) in Python. Although this concept has been around in Python for a long time, in daily development, especially in development scenarios related to LeapCell, many people may not use it frequently, or they may not use it in the most sophisticated way

https://earezki.com/python-sqlite-full-guide/

Production-grade guide to SQLite with Python: when to use it, how to configure it correctly, and the footguns that will destroy your weekend

https://boardor.com/blog/chapter-8-intermediate-python-part-2

# Chapter 8 Intermediate Python (Part 2) 2026-08-18 # 1. Special Literal None ## 1.1 Basic Definition of None - Type Identification: None is the only literal of the NoneType in Python (no other values), similar to the Boolean type (only True/False literals), but more special. - Core Meaning: Represents “null value”, “no value”, or “meaningless”, used to explicitly mark that a variable has not yet been assigned a value or that a result does not exist, rather than a specific number / character

https://medium.com/@yeraydiazdiaz/asyncio-for-the-working-python-developer-5c468e6e2e8e

A hands on tutorial on Python's asyncio explaining concurrency with simple examples working up to making concurrent HTTP calls

https://gitlab.esrf.fr/limagroup/Lima-tango-python/-/commit/77456cc361a404a5e59925d11e5146a080be822c

python tango server for Lima

‹ Prev Next ›