FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Objects/longobject.c - java66liu/python · GitHub
java66liu
/
python
Public
forked from
glix/python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Commits
Breadcrumbs
History for
python
Objects
longobject.c
on
master
User selector
Datepicker
Commit history
Commits on Jan 26, 2009
Fix comment.
Show description for 4a6b885
mark.dickinson
committed
4a6b885
View commit details
Copy full SHA for 4a6b885
View code at this point
Browse repository at this point
Fix undefined behaviour (left shift of negative value) in long_hash. Also,
Show description for 3f4d39e
mark.dickinson
committed
3f4d39e
View commit details
Copy full SHA for 3f4d39e
View code at this point
Browse repository at this point
Commits on Jan 25, 2009
No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough.
Show description for 7b5c1fe
mark.dickinson
committed
7b5c1fe
View commit details
Copy full SHA for 7b5c1fe
View code at this point
Browse repository at this point
Commits on Jan 24, 2009
Issue #4393: fix 3 classes of potential portability problems in longobject.c:
Show description for b624cb5
mark.dickinson
committed
b624cb5
View commit details
Copy full SHA for b624cb5
View code at this point
Browse repository at this point
Commits on Dec 17, 2008
Issue #3439: add bit_length method to int and long.
Show description for b5c4363
mark.dickinson
committed
b5c4363
View commit details
Copy full SHA for b5c4363
View code at this point
Browse repository at this point
Commits on Aug 4, 2008
Issue #1481296: (again!) Make conversion of a float NaN to an int or
Show description for f761d8e
mark.dickinson
committed
f761d8e
View commit details
Copy full SHA for f761d8e
View code at this point
Browse repository at this point
Commits on Jul 31, 2008
Security patches from Apple: prevent int overflow when allocating memory
Show description for fea1be4
neal.norwitz
committed
fea1be4
View commit details
Copy full SHA for fea1be4
View code at this point
Browse repository at this point
Commits on Jul 10, 2008
Added additional __sizeof__ implementations and addressed comments made in
Show description for 9e4a90c
robert.schuppenies
committed
9e4a90c
View commit details
Copy full SHA for 9e4a90c
View code at this point
Browse repository at this point
Commits on Jun 24, 2008
Revert 64424, 64438, and 64439.
Show description for ad77ef5
raymond.hettinger
committed
ad77ef5
View commit details
Copy full SHA for ad77ef5
View code at this point
Browse repository at this point
Commits on Jun 20, 2008
Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support.
Show description for f977880
raymond.hettinger
committed
f977880
View commit details
Copy full SHA for f977880
View code at this point
Browse repository at this point
Commits on Jun 9, 2008
This reverts r63675 based on the discussion in this thread:
Show description for 36da06a
gregory.p.smith
committed
36da06a
View commit details
Copy full SHA for 36da06a
View code at this point
Browse repository at this point
Commits on Jun 1, 2008
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Show description for 5eb28fc
georg.brandl
committed
5eb28fc
View commit details
Copy full SHA for 5eb28fc
View code at this point
Browse repository at this point
Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.
Show description for e8b6491
robert.schuppenies
committed
e8b6491
View commit details
Copy full SHA for e8b6491
View code at this point
Browse repository at this point
Commits on May 30, 2008
Refactor and clean up str.format() code (and helpers) in advance of optimizations.
Show description for cf6b910
eric.smith
committed
cf6b910
View commit details
Copy full SHA for cf6b910
View code at this point
Browse repository at this point
Commits on May 26, 2008
Renamed PyString to PyBytes
Show description for 4b6cc1c
christian.heimes
committed
4b6cc1c
View commit details
Copy full SHA for 4b6cc1c
View code at this point
Browse repository at this point
Commits on Apr 18, 2008
I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of lo…
Show description for acf0ad8
christian.heimes
committed
acf0ad8
View commit details
Copy full SHA for acf0ad8
View code at this point
Browse repository at this point
Commits on Apr 15, 2008
Fix for possible signed overflow: the behaviour of -LONG_MIN is
Show description for c122365
mark.dickinson
committed
c122365
View commit details
Copy full SHA for c122365
View code at this point
Browse repository at this point
Commits on Mar 28, 2008
Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.
Show description for 609532d
neal.norwitz
committed
609532d
View commit details
Copy full SHA for 609532d
View code at this point
Browse repository at this point
Commits on Mar 27, 2008
Fix warnings about using char as an array subscript. This is not portable
Show description for 382240f
neal.norwitz
committed
382240f
View commit details
Copy full SHA for 382240f
View code at this point
Browse repository at this point
Commits on Mar 18, 2008
Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster.
Show description for e8905b8
jeffrey.yasskin
committed
e8905b8
View commit details
Copy full SHA for e8905b8
View code at this point
Browse repository at this point
Commits on Mar 17, 2008
Finished backporting PEP 3127, Integer Literal Support and Syntax.
Show description for 6c93fd2
eric.smith
committed
6c93fd2
View commit details
Copy full SHA for 6c93fd2
View code at this point
Browse repository at this point
Commits on Feb 17, 2008
Backport of PEP 3101, Advanced String Formatting, from py3k.
Show description for 73bfda1
eric.smith
committed
73bfda1
View commit details
Copy full SHA for 73bfda1
View code at this point
Browse repository at this point
Commits on Feb 10, 2008
Added PyNumber_ToBase and supporting routines _PyInt_Format and
Show description for f448d26
eric.smith
committed
f448d26
View commit details
Copy full SHA for f448d26
View code at this point
Browse repository at this point
Commits on Jan 25, 2008
Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray …
Show description for 5af8a4b
christian.heimes
committed
5af8a4b
View commit details
Copy full SHA for 5af8a4b
View code at this point
Browse repository at this point
Commits on Jan 18, 2008
Silence Coverity false alerts with CIDs #172, #183, #184
Show description for 079d853
christian.heimes
committed
079d853
View commit details
Copy full SHA for 079d853
View code at this point
Browse repository at this point
Commits on Jan 5, 2008
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
Show description for efe5c73
jeffrey.yasskin
committed
efe5c73
View commit details
Copy full SHA for efe5c73
View code at this point
Browse repository at this point
Commits on Jan 4, 2008
Make math.{floor,ceil}({int,long}) return float again for backwards
Show description for 654c2c6
jeffrey.yasskin
committed
654c2c6
View commit details
Copy full SHA for 654c2c6
View code at this point
Browse repository at this point
Bug #1481296: Fixed long(float('nan'))!=0L.
Show description for 5d05b9d
christian.heimes
committed
5d05b9d
View commit details
Copy full SHA for 5d05b9d
View code at this point
Browse repository at this point
Commits on Jan 3, 2008
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
Show description for cd607cc
jeffrey.yasskin
committed
cd607cc
View commit details
Copy full SHA for cd607cc
View code at this point
Browse repository at this point
Commits on Dec 19, 2007
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available.
Show description for ab7f0de
christian.heimes
committed
ab7f0de
View commit details
Copy full SHA for ab7f0de
View code at this point
Browse repository at this point
Commits on Sep 19, 2007
Show description for 9f00201
facundo.batista
committed
9f00201
View commit details
Copy full SHA for 9f00201
View code at this point
Browse repository at this point
Commits on Jul 21, 2007
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Show description for 61ecb79
martin.v.loewis
committed
61ecb79
View commit details
Copy full SHA for 61ecb79
View code at this point
Browse repository at this point
Commits on May 3, 2007
Fix problems in x64 build that were discovered by the testsuite:
Show description for 693a347
kristjan.jonsson
committed
693a347
View commit details
Copy full SHA for 693a347
View code at this point
Browse repository at this point
Commits on Apr 11, 2007
Add some missing NULL checks which trigger crashes on low-memory conditions.
Show description for bdabc26
georg.brandl
committed
bdabc26
View commit details
Copy full SHA for bdabc26
View code at this point
Browse repository at this point
Commits on Mar 6, 2007
Patch #1638879: don't accept strings with embedded NUL bytes in long().
Show description for 5917fff
georg.brandl
committed
5917fff
View commit details
Copy full SHA for 5917fff
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL