Victor Stinner
|
4195b5caea
|
Backout f8409b3d6449: the PEP 410 is not accepted yet
|
2012-02-08 23:03:19 +01:00 |
Victor Stinner
|
ccd5715a14
|
PEP 410
|
2012-02-08 14:31:50 +01:00 |
Victor Stinner
|
09225b73c1
|
Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime()
to have a resolution of 100 ns instead of 1 ms (the clock accuracy is between
0.5 ms and 15 ms).
|
2012-02-07 23:41:01 +01:00 |
Petri Lehtinen
|
4b0eab62f0
|
Merge branch 3.2
Closes #13402.
|
2012-02-02 21:23:15 +02:00 |
Petri Lehtinen
|
9713321f46
|
Document absoluteness of sys.executable
Closes #13402.
|
2012-02-02 20:59:50 +02:00 |
Victor Stinner
|
ed27785b32
|
Issue #13706: Add assertions to detect bugs earlier
|
2012-02-01 00:22:23 +01:00 |
Victor Stinner
|
a3dd409b52
|
Remove now useless arbitrary limit of module name length
|
2012-01-26 00:31:49 +01:00 |
Antoine Pitrou
|
581616624d
|
Port import fixes from 2.7.
|
2012-01-25 18:06:07 +01:00 |
Antoine Pitrou
|
33d15f7c85
|
Port import fixes from 2.7.
|
2012-01-25 18:01:45 +01:00 |
Antoine Pitrou
|
abaf89b2be
|
Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp.
|
2012-01-24 17:45:50 +01:00 |
Antoine Pitrou
|
2be60afb7e
|
Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp.
|
2012-01-24 17:44:06 +01:00 |
Amaury Forgeot d'Arc
|
6d766fc3fa
|
Silence last compilation warning.
|
2012-01-23 23:20:43 +01:00 |
Amaury Forgeot d'Arc
|
cd27df3a99
|
Fix compilation warnings (seen on win32 buildbot)
|
2012-01-23 22:42:19 +01:00 |
Benjamin Peterson
|
ce79852077
|
use the static identifier api for looking up special methods
I had to move the static identifier code from unicodeobject.h to object.h in
order for this to work.
|
2012-01-22 11:24:29 -05:00 |
Victor Stinner
|
a4ac600d6f
|
Issue #13706: Support non-ASCII fill characters
|
2012-01-21 15:50:49 +01:00 |
Eric V. Smith
|
d25cfe66f5
|
Improve exception text. Closes issue 13811.
|
2012-01-19 20:04:28 -05:00 |
Meador Inge
|
fa21bf015d
|
Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement
|
2012-01-19 01:08:41 -06:00 |
Antoine Pitrou
|
f0ecdd2ab9
|
Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry.
|
2012-01-18 22:31:12 +01:00 |
Antoine Pitrou
|
1b468af7be
|
Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry.
|
2012-01-18 22:30:21 +01:00 |
Antoine Pitrou
|
aa5c5c60f1
|
Finally fix all test_capi refleaks
|
2012-01-18 21:45:15 +01:00 |
Antoine Pitrou
|
165e01f83f
|
Fix the builtin module initialization code to store the init function for future reinitialization.
|
2012-01-18 20:17:58 +01:00 |
Antoine Pitrou
|
6c40eb7f42
|
Fix the builtin module initialization code to store the init function for future reinitialization.
|
2012-01-18 20:16:09 +01:00 |
Antoine Pitrou
|
fff47ab342
|
Fix a memory leak when initializing the standard I/O streams.
|
2012-01-18 15:28:38 +01:00 |
Antoine Pitrou
|
2fabface50
|
Fix a memory leak when initializing the standard I/O streams.
|
2012-01-18 15:14:46 +01:00 |
Benjamin Peterson
|
c64ae92bf1
|
fix indentation
|
2012-01-16 18:02:21 -05:00 |
Benjamin Peterson
|
c8909ddd28
|
break out switch at correct place
|
2012-01-16 17:44:12 -05:00 |
Benjamin Peterson
|
205ad61313
|
only finish error if one occurred
|
2012-01-16 17:31:43 -05:00 |
Benjamin Peterson
|
c0beabc2a5
|
move LINENO define to where it actually belongs
|
2012-01-16 17:29:05 -05:00 |
Benjamin Peterson
|
55e0043a51
|
streamline normalizer identification a bit
|
2012-01-16 17:22:31 -05:00 |
Benjamin Peterson
|
d3af6e30a2
|
fix spelling
|
2012-01-16 09:56:35 -05:00 |
Benjamin Peterson
|
de5827dcd2
|
invert condition (head bang)
|
2012-01-16 09:55:53 -05:00 |
Benjamin Peterson
|
0fa35ea8f3
|
fix possible refleaks
|
2012-01-16 09:50:48 -05:00 |
Benjamin Peterson
|
89f8b80202
|
use helpful PyUnicode_IS_ASCII macro
|
2012-01-16 09:49:20 -05:00 |
Benjamin Peterson
|
5eda913cd2
|
PyUnicode_DecodeUTF8 will always return a ready string
|
2012-01-16 09:47:42 -05:00 |
Benjamin Peterson
|
8f56e0909f
|
rewrite such that this actually makes sense
|
2012-01-16 09:42:36 -05:00 |
Meador Inge
|
da05f454e3
|
Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes.
|
2012-01-15 19:31:57 -06:00 |
Meador Inge
|
3388060127
|
Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes.
|
2012-01-15 19:15:36 -06:00 |
Benjamin Peterson
|
527c622926
|
make YieldFrom its own distinct from Yield (closes #13780)
|
2012-01-14 08:58:23 -05:00 |
Amaury Forgeot d'Arc
|
0a239e9191
|
Fix compilation with C89 compilers (Windows...)
|
2012-01-13 21:08:49 +01:00 |
Benjamin Peterson
|
0010256de4
|
fold into one if statement
|
2012-01-11 21:00:16 -05:00 |
Benjamin Peterson
|
a12d5c62f7
|
fix formatting
|
2012-01-03 16:47:22 -06:00 |
Benjamin Peterson
|
f606e682a4
|
add another year to glorious PSF IP
|
2011-12-31 22:42:26 -06:00 |
Benjamin Peterson
|
0296a56520
|
NULL and no exception set from tp_iternext means StopIteration
|
2012-01-13 14:54:31 -05:00 |
Georg Brandl
|
bc3b682923
|
Closes #13761: add a "flush" keyword argument to print().
|
2012-01-13 19:41:25 +01:00 |
Antoine Pitrou
|
5136ac0ca2
|
Issue #13645: pyc files now contain the size of the corresponding source
code, to avoid timestamp collisions (especially on filesystems with a low
timestamp resolution) when checking for freshness of the bytecode.
|
2012-01-13 18:52:16 +01:00 |
Nick Coghlan
|
1f7ce62bd6
|
Implement PEP 380 - 'yield from' (closes #11682)
|
2012-01-13 21:43:40 +10:00 |
Antoine Pitrou
|
3a5d4cb940
|
Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`.
|
2012-01-12 22:46:19 +01:00 |
Benjamin Peterson
|
0ab2a26865
|
merge 3.2
|
2012-01-11 21:00:48 -05:00 |
Benjamin Peterson
|
21e0da228d
|
remove some usage of Py_UNICODE_TOUPPER/LOWER
|
2012-01-11 21:00:42 -05:00 |
Victor Stinner
|
3fe553160c
|
Add a new PyUnicode_Fill() function
It is faster than the unicode_fill() function which was implemented in
formatter_unicode.c.
|
2012-01-04 00:33:50 +01:00 |