FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for py/objbool.c - ProGamerCode/circuitpython · GitHub
ProGamerCode
/
circuitpython
Public
forked from
adafruit/circuitpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
circuitpython
py
objbool.c
on
stable
User selector
Datepicker
Commit history
Commits on Jul 31, 2017
all: Use the name MicroPython consistently in comments
Show description for 55f3324
webmeister
authored and
dpgeorge
committed
55f3324
View commit details
Copy full SHA for 55f3324
View code at this point
Browse repository at this point
Commits on Sep 30, 2016
py/objbool: Make a slight simplification of bool constructor.
Show description for 8de270b
dpgeorge
committed
8de270b
View commit details
Copy full SHA for 8de270b
View code at this point
Browse repository at this point
py/objbool: Defer bool's unary op implementation to small int.
Show description for eca1408
dpgeorge
committed
eca1408
View commit details
Copy full SHA for eca1408
View code at this point
Browse repository at this point
Commits on Jan 11, 2016
py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.
Show description for 5b3f0b7
dpgeorge
committed
5b3f0b7
View commit details
Copy full SHA for 5b3f0b7
View code at this point
Browse repository at this point
py: Change type of .make_new and .call args: mp_uint_t becomes size_t.
Show description for a0c9781
dpgeorge
committed
a0c9781
View commit details
Copy full SHA for a0c9781
View code at this point
Browse repository at this point
Commits on Dec 10, 2015
py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.
Show description for bdbe8c9
dpgeorge
committed
bdbe8c9
View commit details
Copy full SHA for bdbe8c9
View code at this point
Browse repository at this point
Commits on Nov 29, 2015
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Show description for 999cedb
dpgeorge
committed
999cedb
View commit details
Copy full SHA for 999cedb
View code at this point
Browse repository at this point
Commits on Sep 4, 2015
py/objbool: Simplify dispatch of bool binary op.
Show description for 0b7a66a
dpgeorge
committed
0b7a66a
View commit details
Copy full SHA for 0b7a66a
View code at this point
Browse repository at this point
Commits on May 12, 2015
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
Show description for c2a4e4e
dpgeorge
committed
c2a4e4e
View commit details
Copy full SHA for c2a4e4e
View code at this point
Browse repository at this point
Commits on Apr 16, 2015
py: Overhaul and simplify printf/pfenv mechanism.
Show description for 7f9d1d6
dpgeorge
committed
7f9d1d6
View commit details
Copy full SHA for 7f9d1d6
View code at this point
Browse repository at this point
Commits on Jan 20, 2015
py, unix: Allow to compile with -Wunused-parameter.
Show description for ff8dd3f
dpgeorge
committed
ff8dd3f
View commit details
Copy full SHA for ff8dd3f
View code at this point
Browse repository at this point
Commits on Jan 1, 2015
py: Move to guarded includes, everywhere in py/ core.
Show description for 51dfcb4
dpgeorge
committed
51dfcb4
View commit details
Copy full SHA for 51dfcb4
View code at this point
Browse repository at this point
Commits on Sep 23, 2014
py: Make native emitter handle multi-compare and not/is not/not in ops.
dpgeorge
committed
d6230f6
View commit details
Copy full SHA for d6230f6
View code at this point
Browse repository at this point
Commits on Sep 17, 2014
py: Add native json printing using existing print framework.
Show description for 612045f
dpgeorge
committed
612045f
View commit details
Copy full SHA for 612045f
View code at this point
Browse repository at this point
Commits on Aug 29, 2014
Change some parts of the core API to use mp_uint_t instead of uint/int.
Show description for ecc88e9
dpgeorge
committed
ecc88e9
View commit details
Copy full SHA for ecc88e9
View code at this point
Browse repository at this point
Commits on Jul 31, 2014
py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.
Show description for bb4c6f3
dpgeorge
committed
bb4c6f3
View commit details
Copy full SHA for bb4c6f3
View code at this point
Browse repository at this point
Commits on Jul 3, 2014
Rename machine_(u)int_t to mp_(u)int_t.
Show description for 40f3c02
dpgeorge
committed
40f3c02
View commit details
Copy full SHA for 40f3c02
View code at this point
Browse repository at this point
Commits on May 21, 2014
py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.
Show description for 6ac5dce
dpgeorge
committed
6ac5dce
View commit details
Copy full SHA for 6ac5dce
View code at this point
Browse repository at this point
Commits on May 11, 2014
py: Use mp_arg_check_num in more places.
Show description for ee7a880
dpgeorge
committed
ee7a880
View commit details
Copy full SHA for ee7a880
View code at this point
Browse repository at this point
Commits on May 3, 2014
Add license header to (almost) all files.
Show description for 04b9147
dpgeorge
committed
04b9147
View commit details
Copy full SHA for 04b9147
View code at this point
Browse repository at this point
Commits on May 2, 2014
py, unix: Make "mpconfig.h" be first included, as other headers depend on it.
Show description for f54bcbf
pfalcon
committed
f54bcbf
View commit details
Copy full SHA for f54bcbf
View code at this point
Browse repository at this point
Commits on Apr 17, 2014
py: Add MP_OBJ_STOP_ITERATION and make good use of it.
Show description for ea8d06c
dpgeorge
committed
ea8d06c
View commit details
Copy full SHA for ea8d06c
View code at this point
Browse repository at this point
Commits on Apr 5, 2014
py: Change nlr_jump to nlr_raise, to aid in debugging.
Show description for ea13f40
dpgeorge
committed
ea13f40
View commit details
Copy full SHA for ea13f40
View code at this point
Browse repository at this point
Commits on Apr 4, 2014
py: Make False and True act like 0 and 1 for integer arithmetic.
dpgeorge
committed
e8208a7
View commit details
Copy full SHA for e8208a7
View code at this point
Browse repository at this point
Commits on Mar 30, 2014
Rename rt_* to mp_*.
Show description for d17926d
dpgeorge
committed
d17926d
View commit details
Copy full SHA for d17926d
View code at this point
Browse repository at this point
Commits on Mar 29, 2014
py: Change mp_const_* objects to macros.
Show description for 07ddab5
dpgeorge
committed
07ddab5
View commit details
Copy full SHA for 07ddab5
View code at this point
Browse repository at this point
Commits on Mar 17, 2014
py: Clean up includes.
Show description for efe3422
xbe
committed
efe3422
View commit details
Copy full SHA for efe3422
View code at this point
Browse repository at this point
Commits on Feb 15, 2014
Implement proper exception type hierarchy.
Show description for c596612
dpgeorge
committed
c596612
View commit details
Copy full SHA for c596612
View code at this point
Browse repository at this point
Change mp_obj_type_t.name from const char * to qstr.
Show description for a71c83a
dpgeorge
committed
a71c83a
View commit details
Copy full SHA for a71c83a
View code at this point
Browse repository at this point
Commits on Feb 12, 2014
Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.
Show description for d5df6cd
pfalcon
committed
d5df6cd
View commit details
Copy full SHA for d5df6cd
View code at this point
Browse repository at this point
Commits on Jan 30, 2014
Implement __bool__ and __len__ via unary_op virtual method for all types.
Show description for c1d9bbc
pfalcon
committed
c1d9bbc
View commit details
Copy full SHA for c1d9bbc
View code at this point
Browse repository at this point
Commits on Jan 23, 2014
py: Implement bool unary op; tidy up unary op dispatch.
dpgeorge
committed
1e708fe
View commit details
Copy full SHA for 1e708fe
View code at this point
Browse repository at this point
Commits on Jan 21, 2014
Revamp qstrs: they now include length and hash.
Show description for 55baff4
dpgeorge
committed
55baff4
View commit details
Copy full SHA for 55baff4
View code at this point
Browse repository at this point
Commits on Jan 18, 2014
Make VM stack grow upwards, and so no reversed args arrays.
Show description for 20006db
dpgeorge
committed
20006db
View commit details
Copy full SHA for 20006db
View code at this point
Browse repository at this point
Commits on Jan 15, 2014
type->print(): Distinguish str() and repr() variety by passing extra param.
pfalcon
committed
76d982e
View commit details
Copy full SHA for 76d982e
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL