FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Objects/stringobject.c - moonxiaoyao/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
moonxiaoyao
/
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
stringobject.c
on
master
User selector
Datepicker
Commit history
Commits on Jan 7, 2009
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
Show description for c5f7665
martin.v.loewis
committed
c5f7665
View commit details
Copy full SHA for c5f7665
View code at this point
Browse repository at this point
Commits on Dec 5, 2008
Issue #4445: save 3 bytes (on average, on a typical machine) per
Show description for 6606dbf
mark.dickinson
committed
6606dbf
View commit details
Copy full SHA for 6606dbf
View code at this point
Browse repository at this point
Commits on Oct 4, 2008
Docstring change for *partition: use same tense as other docstrings.
Show description for 4a76472
andrew.kuchling
committed
4a76472
View commit details
Copy full SHA for 4a76472
View code at this point
Browse repository at this point
Commits on Sep 1, 2008
Issue #3751: str.rpartition would perform a left-partition when called with
Show description for ec647a1
amaury.forgeotdarc
committed
ec647a1
View commit details
Copy full SHA for ec647a1
View code at this point
Browse repository at this point
Commits on Aug 12, 2008
Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,
Show description for 784bfa9
martin.v.loewis
committed
784bfa9
View commit details
Copy full SHA for 784bfa9
View code at this point
Browse repository at this point
Commits on Aug 2, 2008
Preemptively backport the relevant parts of r65420
Show description for 6a17463
antoine.pitrou
committed
6a17463
View commit details
Copy full SHA for 6a17463
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 17, 2008
Backed out r65069, pending fixing it in Windows.
Show description for 6181aea
eric.smith
committed
6181aea
View commit details
Copy full SHA for 6181aea
View code at this point
Browse repository at this point
Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.
Show description for a0a218f
eric.smith
committed
a0a218f
View commit details
Copy full SHA for a0a218f
View code at this point
Browse repository at this point
Commits on Jun 10, 2008
Rename bytesobject.c back to stringobject.c to keep with the PyString theme.
Show description for 40621af
gregory.p.smith
committed
40621af
View commit details
Copy full SHA for 40621af
View code at this point
Browse repository at this point
Commits on May 26, 2008
Renamed bytesobject.c to bytearrayobject.c
Show description for b5e3867
christian.heimes
committed
b5e3867
View commit details
Copy full SHA for b5e3867
View code at this point
Browse repository at this point
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
First step of the C API rename:
Show description for 0b79e9f
christian.heimes
committed
0b79e9f
View commit details
Copy full SHA for 0b79e9f
View code at this point
Browse repository at this point
Commits on May 11, 2008
#2809 followup: even better split docstring.
Show description for 412687e
georg.brandl
committed
412687e
View commit details
Copy full SHA for 412687e
View code at this point
Browse repository at this point
Addresses issue 2802: 'n' formatting for integers.
Show description for a67548c
eric.smith
committed
a67548c
View commit details
Copy full SHA for a67548c
View code at this point
Browse repository at this point
#2809: elaborate str.split docstring a bit.
Show description for 71b3080
georg.brandl
committed
71b3080
View commit details
Copy full SHA for 71b3080
View code at this point
Browse repository at this point
Commits on Apr 10, 2008
get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.
Show description for 8b4678c
gregory.p.smith
committed
8b4678c
View commit details
Copy full SHA for 8b4678c
View code at this point
Browse repository at this point
Commits on Apr 9, 2008
Raise SystemError when size < 0 is passed into PyString_FromStringAndSize,
Show description for 5760422
gregory.p.smith
committed
5760422
View commit details
Copy full SHA for 5760422
View code at this point
Browse repository at this point
Commits on Mar 26, 2008
Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from
Show description for ddc6ae9
christian.heimes
committed
ddc6ae9
View commit details
Copy full SHA for ddc6ae9
View code at this point
Browse repository at this point
Commits on Mar 11, 2008
Fix the overflows in expandtabs(). "This time for sure!"
Show description for d381722
guido.van.rossum
committed
d381722
View commit details
Copy full SHA for d381722
View code at this point
Browse repository at this point
Commits on Feb 24, 2008
Show description for fbc3b57
facundo.batista
committed
fbc3b57
View commit details
Copy full SHA for fbc3b57
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 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 Dec 8, 2007
When splitting, avoid making a copy of the string if the split doesn't find
Show description for 0099866
skip.montanaro
committed
0099866
View commit details
Copy full SHA for 0099866
View code at this point
Browse repository at this point
Commits on Nov 16, 2007
Show description for e330862
facundo.batista
committed
e330862
View commit details
Copy full SHA for e330862
View code at this point
Browse repository at this point
Commits on Nov 6, 2007
Add missing "return NULL" in overflow check in PyObject_Repr().
Show description for 19d516a
guido.van.rossum
committed
19d516a
View commit details
Copy full SHA for 19d516a
View code at this point
Browse repository at this point
Commits on Oct 29, 2007
Backport fixes for the code that decodes octal escapes (and for PyString
Show description for 413191f
guido.van.rossum
committed
413191f
View commit details
Copy full SHA for 413191f
View code at this point
Browse repository at this point
Commits on Sep 17, 2007
Add a bunch of GIL release/acquire points in tp_print implementations and for
Show description for 0de916d
brett.cannon
committed
0de916d
View commit details
Copy full SHA for 0de916d
View code at this point
Browse repository at this point
Commits on Aug 28, 2007
Show description for 708938b
thomas.wouters
committed
708938b
View commit details
Copy full SHA for 708938b
View code at this point
Browse repository at this point
Commits on Jul 29, 2007
Bug #1763149: use proper slice syntax in docstring.
Show description for 1286711
georg.brandl
committed
1286711
View commit details
Copy full SHA for 1286711
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 Jul 12, 2007
Patch #1673759: add a missing overflow check when formatting floats
Show description for b9305c3
georg.brandl
committed
b9305c3
View commit details
Copy full SHA for b9305c3
View code at this point
Browse repository at this point
Commits on Jun 11, 2007
Fix a bug when there was a newline in the string expandtabs was called on.
Show description for 5083bc6
neal.norwitz
committed
5083bc6
View commit details
Copy full SHA for 5083bc6
View code at this point
Browse repository at this point
Commits on Jun 9, 2007
Prevent expandtabs() on string and unicode objects from causing a segfault when
Show description for 69cb54e
neal.norwitz
committed
69cb54e
View commit details
Copy full SHA for 69cb54e
View code at this point
Browse repository at this point
Commits on Apr 12, 2007
SF 1193128: Let str.translate(None) be an identity transformation
Show description for ac85734
raymond.hettinger
committed
ac85734
View commit details
Copy full SHA for ac85734
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL